:root {
  --blue: #0e7490;
  --blue-dark: #0c5266;
  --green: #d9a521;
  --ink: #0d2747;
  --muted: #66758a;
  --soft: #eef6fb;
  --line: #cfe1ec;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 60, 70, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

body.booking-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 6px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(241, 220, 199, 0.75);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero__actions,
.hero__trust {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 1.35rem;
  line-height: 1;
}

.brand__logo {
  display: block;
  height: 104px;
  width: auto;
}

@media (max-width: 760px) {
  .brand__logo {
    height: 68px;
  }
}

/* Services banner shown only in the mobile navbar, just left of the menu button */
.header__mobile-banner {
  display: none;
}

@media (max-width: 980px) {
  .header__mobile-banner {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
    width: min(48vw, 210px);
    height: 62px;
    object-fit: cover;
    /* the icon strip sits slightly above the image centre — nudge the
       crop up a touch so the icons and tagline are not cut off */
    object-position: 50% 45%;
  }
}

/* Footer logo (white badge so the dark wordmark stays visible on the dark footer) */
.footer__logo {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 4px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #ffffff;
}

.footer__logo img {
  display: block;
  height: 110px;
  width: auto;
}

.nav {
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--blue);
}

.header__cta,
.button,
.service-card a,
.service-card .booking-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header__cta,
.button--primary,
.service-card a,
.service-card .booking-trigger {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(14, 116, 144, 0.22);
}

.header__cta {
  animation: topBookingBlink 1.85s ease-in-out infinite;
}

.header__cta:hover,
.button--primary:hover,
.service-card a:hover,
.service-card .booking-trigger:hover,
.button--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 116, 144, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--white);
  background: #0a1c38;
}

.hero-slider__track {
  display: flex;
  height: 100%;
  min-height: inherit;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: inherit;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 5s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 14, 0.78) 0%, rgba(4, 8, 14, 0.48) 36%, rgba(4, 8, 14, 0.06) 78%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.04), rgba(4, 8, 14, 0.14));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 44px));
  padding: 148px 0 120px;
  margin-left: clamp(22px, 4vw, 72px);
}

.hero-slide__content p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.72;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: 4.9rem;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 3.3rem;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero__actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
}

.button--secondary {
  color: var(--blue-dark);
  background: #e2eef6;
}

.button--outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button--light {
  color: var(--blue);
  background: var(--white);
}

.hero-slider__dots {
  position: absolute;
  left: clamp(22px, 4vw, 72px);
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider__dots button {
  width: 38px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-slider__dots button.is-active {
  width: 58px;
  background: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2)) 74px;
  perspective: 1000px;
}

.stats article,
.service-card,
.why-card,
.testimonial-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 56, 92, 0.07);
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.stat-card::before,
.stat-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stat-card::before {
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.76) 42%, transparent 64%);
  transform: translateX(-120%);
  opacity: 0;
}

.stat-card::after {
  right: -36px;
  top: -46px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(14, 116, 144, 0.08);
  filter: blur(2px);
}

.stat-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(14, 116, 144, 0.24);
  box-shadow:
    0 28px 64px rgba(20, 56, 92, 0.13),
    0 0 0 6px rgba(14, 116, 144, 0.04);
}

.stat-card.is-shining::before,
.stat-card:hover::before {
  animation: statShine 0.9s ease forwards;
}

.stats strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--blue);
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: 0;
}

.stats strong .stat-star {
  display: inline;
  margin: 0 0 0 4px;
  color: var(--green);
  font-size: 0.85em;
}

.stats span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

@keyframes statShine {
  from {
    opacity: 0;
    transform: translateX(-120%);
  }
  28% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}

.section {
  padding: 84px max(22px, calc((100vw - 1180px) / 2));
}

.section__head {
  margin-bottom: 34px;
}

.doctor-profile {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(14, 116, 144, 0.1), transparent 23rem),
    radial-gradient(circle at 90% 80%, rgba(217, 165, 33, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
}

.doctor-profile__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.doctor-profile__media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(241, 220, 199, 0.95);
  border-radius: 34px;
  background: #e2eef6;
  box-shadow: 0 32px 80px rgba(8, 60, 70, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.doctor-profile__media:hover {
  transform: translateY(-6px);
  box-shadow: 0 42px 96px rgba(8, 60, 70, 0.18);
}

.doctor-profile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 32, 51, 0.02), rgba(16, 32, 51, 0.18)),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.5), transparent 8rem);
}

.doctor-profile__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.doctor-profile__media:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.055);
}

.doctor-profile__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 3px;
  width: min(220px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 45px rgba(20, 56, 92, 0.13);
  backdrop-filter: blur(18px);
}

.doctor-profile__badge strong {
  color: var(--blue);
  font-size: 2.25rem;
  line-height: 1;
}

.doctor-profile__badge span {
  color: var(--muted);
  font-weight: 800;
}

.doctor-profile__floating {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(20, 56, 92, 0.13);
  backdrop-filter: blur(18px);
  animation: doctorFloat 3.4s ease-in-out infinite;
}

.doctor-profile__floating span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctor-profile__floating strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.doctor-profile__floating--top {
  top: 24px;
  right: 24px;
}

.doctor-profile__floating--side {
  right: 24px;
  bottom: 142px;
  animation-delay: 0.55s;
}

.doctor-profile__content {
  position: relative;
}

.doctor-profile__content h2 {
  margin-bottom: 14px;
}

.doctor-profile__subtitle {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-weight: 900;
}

.doctor-profile__role {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 800;
}

.doctor-profile__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.doctor-profile__trust article {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(241, 220, 199, 0.88);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(8, 60, 70, 0.08);
}

.doctor-profile__trust article::after {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.doctor-profile__trust strong,
.doctor-profile__trust span {
  position: relative;
  z-index: 1;
  display: block;
}

.doctor-profile__trust strong {
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
}

.doctor-profile__trust span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.3;
}

.doctor-profile__bio {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.doctor-profile__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.doctor-profile__chips span {
  padding: 10px 13px;
  border: 1px solid rgba(241, 220, 199, 0.95);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(8, 60, 70, 0.06);
  font-size: 0.88rem;
  font-weight: 850;
}

.doctor-profile__chips--hero {
  margin-top: -6px;
  margin-bottom: 22px;
}

.doctor-profile__quote {
  max-width: 720px;
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.7;
}

.doctor-profile__details {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 16px;
  margin-bottom: 26px;
}

.doctor-profile__details article {
  padding: 20px;
  border: 1px solid rgba(241, 220, 199, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(8, 60, 70, 0.08);
  backdrop-filter: blur(16px);
}

.doctor-profile__details h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.doctor-profile__details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-profile__details li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.doctor-profile__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.09);
}

.about-page {
  background: #fffaf5;
}

.doctor-profile--page {
  padding-top: 112px;
  padding-bottom: 96px;
}

.doctor-profile--page .doctor-profile__content h1 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--ink);
}

.doctor-profile--page .doctor-profile__media {
  min-height: 660px;
}

.doctor-page-info {
  background: #ffffff;
}

.doctor-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.doctor-info-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(241, 220, 199, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(14, 116, 144, 0.08), transparent 12rem),
    #ffffff;
  box-shadow: 0 18px 42px rgba(8, 60, 70, 0.08);
}

.doctor-info-card--wide {
  grid-column: 1 / -1;
}

.doctor-info-card h3 {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.doctor-info-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-info-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.doctor-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.09);
}

.doctor-service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.doctor-service-list span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(241, 220, 199, 0.9);
  border-radius: 18px;
  color: var(--blue-dark);
  background: #eef6fb;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
}

.terms-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 116, 144, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 44%, #eef6fb 100%);
}

.terms-hero {
  padding-top: 116px;
  padding-bottom: 42px;
}

.terms-hero h1 {
  max-width: 860px;
  color: var(--ink);
}

.terms-hero p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
}

.terms-section {
  padding-top: 18px;
}

.terms-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(241, 220, 199, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(8, 60, 70, 0.1);
  backdrop-filter: blur(16px);
}

.terms-content h2 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.terms-content h2:first-child {
  margin-top: 0;
}

.terms-content h3 {
  margin: 24px 0 10px;
  color: var(--blue-dark);
  font-size: 1.08rem;
  line-height: 1.35;
}

.terms-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.terms-bullet {
  position: relative;
  padding-left: 20px;
}

.terms-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.09);
}

@keyframes doctorFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.service-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.conditions-section {
  padding: 92px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 0.96)),
    #eef5fb;
}

.conditions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-left: max(22px, calc((100vw - 1180px) / 2));
}

.conditions-copy {
  position: sticky;
  top: 112px;
  padding-right: 10px;
}

.conditions-copy h2 {
  margin-bottom: 16px;
}

.conditions-copy p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.conditions-stage {
  display: grid;
  gap: 28px;
  min-width: 0;
  padding: 4px 0 14px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.condition-row {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: conditionSlide 36s linear infinite;
}

.condition-row--reverse {
  animation-name: conditionSlideReverse;
  animation-duration: 42s;
}

.conditions-stage:hover .condition-row {
  animation-play-state: paused;
}

.condition-card {
  position: relative;
  width: 178px;
  min-height: 224px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  overflow: hidden;
  border: 1px solid #cfe1ec;
  border-radius: 18px;
  background: #f3fbff;
  box-shadow: 0 18px 38px rgba(13, 84, 90, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.condition-card:hover,
.service-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.condition-visual {
  position: relative;
  width: calc(100% - 32px);
  height: 118px;
  margin: 16px auto 0;
  border: 1px solid #cfe1ec;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 48%, rgba(217, 165, 33, 0.24) 0 20px, transparent 21px),
    #ffffff;
}

.condition-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 42px;
  height: 64px;
  transform: translateX(-50%);
  border: 1.8px solid #3c7d96;
  border-top: 0;
  border-radius: 18px 18px 14px 14px;
}

.condition-visual::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217, 165, 33, 0.58);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.36);
}

.condition-visual--abdomen::after { left: 50%; top: 62px; transform: translateX(-50%); }
.condition-visual--chest::after { left: 58%; top: 42px; }
.condition-visual--hand::after { left: 62%; top: 48px; }
.condition-visual--head::after { left: 54%; top: 22px; }
.condition-visual--shoulder::after { left: 35%; top: 38px; }
.condition-visual--body::after { left: 50%; top: 50px; transform: translateX(-50%); }
.condition-visual--bite::after { left: 40%; top: 58px; }
.condition-visual--lungs::after { left: 55%; top: 48px; }
.condition-visual--neck::after { left: 51%; top: 34px; transform: translateX(-50%); }
.condition-visual--muscle::after { left: 34%; top: 50px; }
.condition-visual--skin::after { left: 64%; top: 35px; }

.condition-card h3 {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 12px 10px;
  color: #13455e;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.22;
  text-align: center;
}

.condition-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  color: var(--white);
  background: linear-gradient(90deg, #e8c25a, #c8941a);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.service-card h3,
.why-card h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.service-card p,
.why-card p,
.testimonial-card p,
.cta p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.services,
.why,
.testimonials {
  background: var(--soft);
}

@keyframes conditionSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

@keyframes conditionSlideReverse {
  from { transform: translateX(calc(-50% - 10px)); }
  to { transform: translateX(0); }
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 446px;
  flex-direction: column;
  overflow: hidden;
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.6;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #e2eef6;
}

.service-card__media::before {
  content: attr(data-fallback);
  position: absolute;
  inset: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(14, 116, 144, 0.18);
  border-radius: 14px;
  color: var(--blue-dark);
  background:
    radial-gradient(circle at 72% 24%, rgba(217, 165, 33, 0.22), transparent 5rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 244, 230, 0.86));
  font-size: 1.05rem;
  font-weight: 900;
  opacity: 0;
  text-align: center;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 24, 0.02), rgba(4, 14, 24, 0.28)),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.5), transparent 7rem);
}

.service-card__media.is-fallback::before {
  opacity: 1;
}

.service-card__media.is-fallback::after {
  background:
    radial-gradient(circle at 18% 82%, rgba(14, 116, 144, 0.12), transparent 8rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.1), rgba(255, 237, 213, 0.34));
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card__media.is-fallback img {
  display: none;
}

.service-card:hover {
  border-color: rgba(14, 116, 144, 0.22);
}

.service-card:hover .service-card__media img {
  filter: saturate(1.06);
  transform: scale(1.08);
}

.service-card__tag {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(14, 116, 144, 0.92);
  box-shadow: 0 16px 32px rgba(14, 116, 144, 0.22);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 16px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.09);
}

.service-card a,
.service-card .booking-trigger {
  margin-top: auto;
  min-height: 42px;
  font-size: 0.92rem;
}

.service-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.service-card--wide span,
.service-card--wide p,
.service-card--wide h3 {
  margin: 0;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  padding: 24px;
}

.why-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card p {
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--blue);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding: 20px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq-item span {
  font-weight: 800;
}

.faq-item small {
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item p {
  grid-column: 1 / -1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.65;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
}

.faq-item.is-open p {
  max-height: 160px;
  margin-top: 12px;
}

.faq-item.is-open small {
  transform: rotate(45deg);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 18px max(22px, calc((100vw - 1180px) / 2)) 84px;
  padding: 42px;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue) 58%, var(--green));
  box-shadow: var(--shadow);
}

.cta h2 {
  color: var(--white);
}

.cta .eyebrow,
.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.cta p {
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 1.8fr 1fr 1fr 1fr 1.1fr;
  gap: 34px 24px;
  padding: 54px max(22px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: #0c2440;
}

.footer__col--services {
  text-align: center;
}

.footer .footer__services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
}

.footer .footer__services-grid a {
  font-size: 0.92rem;
}

.footer .brand,
.footer h3 {
  color: var(--white);
}

.footer h3 {
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--green);
}

.footer__brand .brand {
  margin-bottom: 4px;
}

.footer__phone {
  font-weight: 800;
  color: var(--white);
}

/* Categorised health-concerns block spanning the full footer width */
.footer__concerns {
  grid-column: 1 / -1;
  gap: 18px;
  margin-top: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__concerns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer__concern-group {
  gap: 9px;
}

.footer__concern-group h4 {
  margin: 0 0 2px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__concern-group a {
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .footer__concerns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .footer__concern-group a {
    font-size: 0.88rem;
  }
}

.footer .footer__base {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer__base p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.footer__base-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__base-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer__credit a:hover {
  color: var(--green);
}

.footer__booking {
  width: max-content;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.footer__booking:hover {
  color: var(--green);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #16a34a;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.32);
  font-weight: 800;
  cursor: pointer;
  animation: whatsappButtonBlink 1.55s ease-in-out infinite;
}

.floating-whatsapp__icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: #16a34a;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.08);
  animation: whatsappIconBlink 1.05s ease-in-out infinite;
}

.floating-whatsapp__icon svg {
  width: 19px;
  height: 19px;
}

.floating-whatsapp__icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@keyframes topBookingBlink {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 12px 26px rgba(14, 116, 144, 0.22);
  }
  50% {
    filter: brightness(1.08);
    box-shadow:
      0 18px 34px rgba(14, 116, 144, 0.3),
      0 0 0 8px rgba(14, 116, 144, 0.12);
  }
}

@keyframes whatsappButtonBlink {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 16px 34px rgba(22, 163, 74, 0.32);
  }
  50% {
    filter: brightness(1.08);
    box-shadow:
      0 20px 42px rgba(22, 163, 74, 0.42),
      0 0 0 10px rgba(22, 163, 74, 0.16);
  }
}

@keyframes whatsappIconBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.12);
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 20%, rgba(14, 116, 144, 0.22), transparent 24rem),
    rgba(10, 18, 30, 0.58);
  backdrop-filter: blur(12px);
}

.booking-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.94));
  box-shadow:
    0 34px 90px rgba(10, 18, 30, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.24s ease;
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #fff1e4;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.booking-modal h2 {
  margin-bottom: 12px;
  font-size: 2.35rem;
}

.booking-modal__copy {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(241, 220, 199, 0.95);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(14, 116, 144, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.1);
}

.booking-form__submit {
  min-height: 52px;
  margin-top: 8px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #22d3ee);
  box-shadow: 0 18px 36px rgba(14, 116, 144, 0.28);
  cursor: pointer;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.conditions-section .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 16px;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-slide__content {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .stats,
  .service-grid,
  .why-grid,
  .testimonial-grid,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .doctor-profile__layout {
    grid-template-columns: 1fr;
  }

  .doctor-profile__media {
    min-height: 520px;
  }

  .doctor-profile__details {
    grid-template-columns: 1fr;
  }

  .doctor-page-grid {
    grid-template-columns: 1fr;
  }

  .doctor-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card--wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .conditions-layout {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .conditions-copy {
    position: relative;
    top: auto;
    max-width: 720px;
    padding-right: max(22px, calc((100vw - 1180px) / 2));
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header {
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .header__cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .nav {
    justify-content: flex-start;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-slide__content {
    width: calc(100% - 36px);
    padding-top: 78px;
    padding-bottom: 100px;
    margin-left: 18px;
  }

  .hero-slide__overlay {
    background:
      linear-gradient(90deg, rgba(4, 8, 14, 0.86) 0%, rgba(4, 8, 14, 0.64) 58%, rgba(4, 8, 14, 0.28) 100%),
      linear-gradient(180deg, rgba(4, 8, 14, 0.08), rgba(4, 8, 14, 0.34));
  }

  .hero-slider__dots {
    left: 18px;
    bottom: 28px;
  }

  .stats,
  .service-grid,
  .why-grid,
  .testimonial-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .doctor-profile__media {
    min-height: 420px;
    border-radius: 24px;
  }

  .doctor-profile__badge {
    left: 16px;
    bottom: 16px;
    width: min(205px, calc(100% - 32px));
    padding: 14px;
    border-radius: 18px;
  }

  .doctor-profile__badge strong {
    font-size: 1.9rem;
  }

  .doctor-profile__floating {
    display: none;
  }

  .doctor-profile__trust {
    grid-template-columns: 1fr;
  }

  .doctor-profile__chips span {
    font-size: 0.82rem;
  }

  .doctor-profile--page {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .doctor-profile--page .doctor-profile__media {
    min-height: 440px;
  }

  .doctor-info-card {
    padding: 20px;
    border-radius: 20px;
  }

  .doctor-service-list {
    grid-template-columns: 1fr;
  }

  .stats {
    padding-bottom: 44px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .conditions-section {
    padding: 58px 0;
  }

  .conditions-layout {
    padding-left: 18px;
  }

  .conditions-copy {
    padding-right: 18px;
  }

  .condition-card {
    width: 154px;
    min-height: 206px;
  }

  .condition-visual {
    height: 104px;
  }

  .service-card--wide {
    grid-column: auto;
  }

  .cta {
    margin-bottom: 58px;
    padding: 28px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .booking-modal {
    padding: 14px;
  }

  .booking-modal__dialog {
    max-height: calc(100vh - 28px);
    padding: 28px 18px 20px;
    border-radius: 24px;
  }

  .booking-modal__close {
    top: 12px;
    right: 12px;
  }
}

/* Refined health concerns marquee */
.conditions-section {
  padding: 76px 0 84px;
  background:
    linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
}

.conditions-layout {
  display: block;
  padding-left: 0;
}

.conditions-copy {
  position: relative;
  top: auto;
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 0 22px;
  text-align: center;
}

.conditions-copy h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 3.2rem;
}

.conditions-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 22px;
}

.conditions-stage {
  gap: 18px;
  padding: 8px 0 10px;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.condition-row {
  gap: 16px;
  animation-duration: 44s;
}

.condition-row--reverse {
  animation-duration: 50s;
}

.condition-card {
  width: 164px;
  min-height: 198px;
  border-color: #cfe1ec;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
  box-shadow: 0 12px 30px rgba(13, 84, 90, 0.1);
}

.condition-card:hover {
  transform: translateY(-6px);
}

.condition-visual {
  width: 94px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  border-color: #d6e7f0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 68% 35%, rgba(230, 190, 90, 0.32) 0 13px, transparent 14px),
    radial-gradient(circle at 38% 66%, rgba(217, 165, 33, 0.12) 0 24px, transparent 25px),
    #ffffff;
}

.condition-visual::before {
  content: "+";
  position: static;
  width: auto;
  height: auto;
  transform: none;
  border: 0;
  color: #0e6a87;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0;
}

.condition-visual::after {
  left: auto;
  right: 12px;
  top: 18px;
  width: 18px;
  height: 18px;
  background: rgba(217, 165, 33, 0.55);
  box-shadow: 0 0 0 7px rgba(217, 165, 33, 0.16);
}

.condition-visual--abdomen::before { content: "GI"; }
.condition-visual--chest::before { content: "BP"; }
.condition-visual--hand::before { content: "DB"; }
.condition-visual--head::before { content: "FE"; }
.condition-visual--shoulder::before { content: "WK"; }
.condition-visual--body::before { content: "PA"; }
.condition-visual--bite::before { content: "DG"; }
.condition-visual--lungs::before { content: "BR"; }
.condition-visual--neck::before { content: "TH"; }
.condition-visual--muscle::before { content: "MS"; }
.condition-visual--skin::before { content: "AL"; }

.condition-visual--abdomen::after,
.condition-visual--chest::after,
.condition-visual--hand::after,
.condition-visual--head::after,
.condition-visual--shoulder::after,
.condition-visual--body::after,
.condition-visual--bite::after,
.condition-visual--lungs::after,
.condition-visual--neck::after,
.condition-visual--muscle::after,
.condition-visual--skin::after {
  left: auto;
  right: 12px;
  top: 18px;
  transform: none;
}

.condition-card h3 {
  min-height: 38px;
  margin: 10px 12px 8px;
  color: #14465f;
  font-size: 0.95rem;
  font-weight: 800;
}

.condition-card strong {
  min-height: 38px;
  background: linear-gradient(90deg, #e8c25a, #c8941a);
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .conditions-section {
    padding: 54px 0 62px;
  }

  .conditions-copy {
    text-align: left;
  }

  .conditions-copy h2 {
    font-size: 2rem;
  }

  .condition-card {
    width: 146px;
    min-height: 184px;
  }

  .condition-visual {
    width: 82px;
    height: 72px;
  }
}

/* Final clean condition grid: no cropped marquee cards */
.conditions-stage {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  gap: 16px;
  mask-image: none;
}

.condition-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: auto;
  gap: 16px;
  animation: none;
}

.condition-row--reverse {
  animation: none;
}

.conditions-stage:hover .condition-row {
  animation-play-state: running;
}

.condition-row .condition-card:nth-child(n + 7) {
  display: none;
}

.condition-card {
  width: auto;
  animation: cardFloatIn 0.7s ease both;
}

.condition-row:nth-child(1) .condition-card:nth-child(2) { animation-delay: 0.04s; }
.condition-row:nth-child(1) .condition-card:nth-child(3) { animation-delay: 0.08s; }
.condition-row:nth-child(1) .condition-card:nth-child(4) { animation-delay: 0.12s; }
.condition-row:nth-child(1) .condition-card:nth-child(5) { animation-delay: 0.16s; }
.condition-row:nth-child(1) .condition-card:nth-child(6) { animation-delay: 0.2s; }
.condition-row:nth-child(2) .condition-card:nth-child(1) { animation-delay: 0.08s; }
.condition-row:nth-child(2) .condition-card:nth-child(2) { animation-delay: 0.12s; }
.condition-row:nth-child(2) .condition-card:nth-child(3) { animation-delay: 0.16s; }
.condition-row:nth-child(2) .condition-card:nth-child(4) { animation-delay: 0.2s; }
.condition-row:nth-child(2) .condition-card:nth-child(5) { animation-delay: 0.24s; }
.condition-row:nth-child(2) .condition-card:nth-child(6) { animation-delay: 0.28s; }

@media (max-width: 980px) {
  .condition-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .conditions-stage {
    width: calc(100% - 28px);
  }

  .condition-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Sticky cartoon health concern story */
.condition-story {
  padding: 84px max(22px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 85% 16%, rgba(217, 165, 33, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
}

.condition-story__head {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.condition-story__head h2 {
  margin-inline: auto;
}

.condition-story__head p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.condition-story__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.condition-visual-panel {
  position: sticky;
  top: 110px;
}

.cartoon-card {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #cfe1ec;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 196, 76, 0.18), transparent 13rem),
    linear-gradient(180deg, #ffffff, #e2eef6);
  box-shadow: 0 22px 58px rgba(13, 84, 90, 0.13);
}

.cartoon-scene {
  position: relative;
  width: min(420px, 92%);
  height: 420px;
}

.cartoon-scene::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 24px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 84, 90, 0.08);
}

.cartoon-patient,
.cartoon-doctor {
  position: absolute;
  bottom: 62px;
}

.cartoon-patient {
  left: 128px;
  width: 136px;
  height: 260px;
  animation: patientBreathe 2.8s ease-in-out infinite;
}

.cartoon-doctor {
  right: 28px;
  width: 118px;
  height: 242px;
}

.cartoon-doctor::before,
.cartoon-doctor span {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.cartoon-doctor::before {
  top: 8px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffd6b1;
  box-shadow: inset 0 -8px 0 rgba(8, 79, 154, 0.08);
}

.cartoon-doctor span {
  top: 72px;
  width: 88px;
  height: 132px;
  border-radius: 30px 30px 18px 18px;
  background:
    linear-gradient(90deg, transparent 47%, #0e7490 48% 52%, transparent 53%),
    #ffffff;
  border: 2px solid #cfe1ec;
  box-shadow: 0 14px 30px rgba(20, 56, 92, 0.12);
}

.patient-head,
.patient-body,
.patient-arm,
.patient-leg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.patient-head {
  top: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ffd6b1;
  box-shadow: inset 0 -10px 0 rgba(20, 56, 92, 0.08);
}

.patient-body {
  top: 82px;
  width: 102px;
  height: 122px;
  border-radius: 38px 38px 24px 24px;
  background: linear-gradient(180deg, #90d7ff, #0b9dd0);
}

.patient-arm {
  top: 102px;
  width: 22px;
  height: 86px;
  border-radius: 999px;
  background: #ffd6b1;
}

.patient-arm--left {
  left: 20px;
  transform: rotate(18deg);
}

.patient-arm--right {
  left: auto;
  right: 18px;
  transform: rotate(-18deg);
}

.patient-leg {
  top: 196px;
  width: 28px;
  height: 70px;
  border-radius: 999px;
  background: #163d56;
}

.patient-leg--left {
  left: 52px;
}

.patient-leg--right {
  left: 84px;
}

.pain-marker {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  opacity: 0.25;
  background: #ff9d00;
  box-shadow: 0 0 0 12px rgba(217, 165, 33, 0.16);
  transform: scale(0.74);
  transition: opacity 0.25s ease, transform 0.25s ease, left 0.25s ease, top 0.25s ease;
}

.pain-marker::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.42);
}

.pain-marker--head { left: 51px; top: 16px; }
.pain-marker--chest { left: 52px; top: 104px; }
.pain-marker--stomach { left: 52px; top: 142px; }
.pain-marker--body { left: 22px; top: 128px; }

.cartoon-card[data-active="fever"] .pain-marker--head,
.cartoon-card[data-active="bp"] .pain-marker--chest,
.cartoon-card[data-active="diabetes"] .pain-marker--stomach,
.cartoon-card[data-active="stomach"] .pain-marker--stomach,
.cartoon-card[data-active="pain"] .pain-marker--body {
  opacity: 1;
  transform: scale(1);
  animation: pulsePain 1.35s ease-in-out infinite;
}

.care-bubble {
  position: absolute;
  left: 18px;
  top: 28px;
  width: 210px;
  padding: 16px;
  border: 1px solid #cfe1ec;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(20, 56, 92, 0.14);
}

.care-bubble strong,
.care-bubble span {
  display: block;
}

.care-bubble strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.care-bubble span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.condition-steps {
  display: grid;
  gap: 22px;
  padding: 12vh 0;
}

.condition-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 164px;
  padding: 22px;
  border: 1px solid #cfe1ec;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(13, 84, 90, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.condition-step.is-active {
  transform: translateX(-8px);
  border-color: rgba(14, 116, 144, 0.34);
  box-shadow: 0 24px 54px rgba(14, 116, 144, 0.14);
}

.condition-step > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--blue);
  background: #e2eef6;
  font-weight: 900;
}

.condition-step h3 {
  margin-bottom: 8px;
}

.condition-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.condition-step strong {
  align-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  color: #7a5e12;
  background: #fbf2d6;
  font-size: 0.72rem;
  text-transform: uppercase;
}

@keyframes pulsePain {
  0%, 100% { box-shadow: 0 0 0 10px rgba(217, 165, 33, 0.14); }
  50% { box-shadow: 0 0 0 18px rgba(217, 165, 33, 0.05); }
}

@keyframes patientBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Premium Health Concerns section */
.premium-concerns {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px max(22px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #fffaf5 0%, #e2eef6 42%, #ffffff 100%);
}

.premium-concerns__glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.42;
}

.premium-concerns__glow--blue {
  left: -170px;
  top: 80px;
  background: rgba(14, 116, 144, 0.18);
}

.premium-concerns__glow--green {
  right: -130px;
  bottom: 80px;
  background: rgba(14, 116, 144, 0.12);
}

.premium-concerns__head {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.premium-concerns__head h2 {
  max-width: 760px;
  margin-inline: auto;
}

.premium-concerns__head p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.premium-concerns__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.health-scene {
  position: sticky;
  top: 104px;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(241, 220, 199, 0.82);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(247, 255, 253, 0.62)),
    radial-gradient(circle at 42% 46%, rgba(217, 165, 33, 0.13), transparent 15rem);
  box-shadow: 0 32px 80px rgba(20, 56, 92, 0.13);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.health-scene:hover .patient-illustration {
  transform: translate(-50%, -3px) scale(1.03);
}

.health-scene__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.health-scene__orb--one {
  width: 210px;
  height: 210px;
  left: 36px;
  bottom: 54px;
  background: rgba(14, 116, 144, 0.11);
}

.health-scene__orb--two {
  width: 160px;
  height: 160px;
  right: 36px;
  top: 84px;
  background: rgba(217, 165, 33, 0.13);
}

.floating-symptom {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  width: min(235px, 72%);
  padding: 14px;
  border: 1px solid rgba(241, 220, 199, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 50px rgba(20, 56, 92, 0.14);
  backdrop-filter: blur(18px);
}

.floating-symptom span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.12), rgba(217, 165, 33, 0.14));
  font-size: 1.2rem;
}

.floating-symptom strong,
.floating-symptom small {
  display: block;
}

.floating-symptom strong {
  color: var(--ink);
}

.floating-symptom small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.floating-symptom--top {
  left: 44px;
  top: 42px;
}

.floating-symptom--left {
  left: 28px;
  bottom: 114px;
}

.floating-symptom--right {
  right: 28px;
  top: 188px;
}

.medical-cross-orbit span {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 24px rgba(14, 116, 144, 0.18);
  font-weight: 900;
}

.medical-cross-orbit span:nth-child(1) { left: 29%; top: 25%; }
.medical-cross-orbit span:nth-child(2) { right: 24%; bottom: 24%; }
.medical-cross-orbit span:nth-child(3) { right: 38%; top: 11%; }

.patient-illustration {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: 190px;
  height: 340px;
  transform: translateX(-50%);
  transition: transform 0.28s ease;
}

.patient-illustration__head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 92px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 60% 33%, rgba(255, 255, 255, 0.55), transparent 17px),
    #ffd9b7;
  box-shadow: inset 0 -12px 0 rgba(20, 56, 92, 0.08);
}

.patient-illustration__body {
  position: absolute;
  left: 50%;
  top: 108px;
  width: 132px;
  height: 158px;
  transform: translateX(-50%);
  border-radius: 42px 42px 26px 26px;
  background:
    linear-gradient(180deg, #80d7ff 0%, #0b9dd0 100%);
  box-shadow: 0 18px 38px rgba(14, 116, 144, 0.18);
}

.patient-illustration__arm,
.patient-illustration__leg {
  position: absolute;
  border-radius: 999px;
}

.patient-illustration__arm {
  top: 130px;
  width: 28px;
  height: 110px;
  background: #ffd9b7;
}

.patient-illustration__arm--left {
  left: 12px;
  transform: rotate(16deg);
}

.patient-illustration__arm--right {
  right: 12px;
  transform: rotate(-16deg);
}

.patient-illustration__leg {
  top: 254px;
  width: 34px;
  height: 78px;
  background: #123a54;
}

.patient-illustration__leg--left { left: 58px; }
.patient-illustration__leg--right { right: 58px; }

.pulse-dot {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ff9d00;
  box-shadow: 0 0 0 12px rgba(217, 165, 33, 0.14);
  animation: premiumPulse 1.45s ease-in-out infinite;
}

.pulse-dot--head {
  right: -4px;
  top: 14px;
}

.pulse-dot--chest {
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
}

.pulse-dot--stomach {
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  animation-delay: 0.35s;
}

.concern-card-list {
  display: grid;
  gap: 14px;
}

.premium-concern-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(241, 220, 199, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(20, 56, 92, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.premium-concern-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.35), rgba(217, 165, 33, 0.35));
  transition: opacity 0.25s ease;
}

.premium-concern-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(14, 116, 144, 0.22);
  box-shadow: 0 26px 60px rgba(20, 56, 92, 0.14);
}

.premium-concern-card:hover::before {
  opacity: 1;
}

.premium-concern-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.12), rgba(217, 165, 33, 0.16));
}

.premium-concern-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.premium-concern-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.premium-concern-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.premium-concern-card .arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.premium-concern-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.concern-feature-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
  padding: 14px;
  border: 1px solid rgba(241, 220, 199, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 56px rgba(20, 56, 92, 0.09);
  backdrop-filter: blur(18px);
}

.concern-feature-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.8), rgba(255, 255, 255, 0.72));
  font-weight: 900;
}

.concern-feature-bar span {
  font-size: 1.25rem;
}

@keyframes premiumPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 10px rgba(217, 165, 33, 0.14); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 20px rgba(217, 165, 33, 0.04); }
}

@media (max-width: 980px) {
  .premium-concerns__layout {
    grid-template-columns: 1fr;
  }

  .health-scene {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .concern-feature-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .premium-concerns {
    padding: 62px 18px;
  }

  .health-scene {
    min-height: 500px;
    border-radius: 24px;
  }

  .floating-symptom {
    width: min(210px, 82%);
  }

  .premium-concern-card {
    grid-template-columns: 50px 1fr;
  }

  .premium-concern-card .arrow {
    display: none;
  }

  .concern-feature-bar {
    grid-template-columns: 1fr;
  }
}

/* Health concern logo marquee */
.concerns-logo-marquee {
  padding-left: 0;
  padding-right: 0;
}

.concerns-logo-marquee .premium-concerns__head {
  padding: 0 22px;
}

.concern-logo-stage {
  position: relative;
  display: grid;
  gap: 22px;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 24px;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.concern-logo-row {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
}

.concern-logo-row--left {
  animation: logoSlideLeft 36s linear infinite;
}

.concern-logo-row--right {
  animation: logoSlideRight 40s linear infinite;
}

.concern-logo-stage:hover .concern-logo-row {
  animation-play-state: paused;
}

.concern-logo-card {
  position: relative;
  width: 172px;
  min-height: 188px;
  display: grid;
  grid-template-rows: 86px auto auto;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(210, 234, 237, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 255, 253, 0.74));
  box-shadow: 0 18px 42px rgba(20, 56, 92, 0.11);
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.concern-logo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.25), rgba(217, 165, 33, 0.22));
  transition: opacity 0.24s ease;
}

.concern-logo-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(14, 116, 144, 0.28);
  box-shadow: 0 28px 62px rgba(20, 56, 92, 0.16);
}

.concern-logo-card:hover::before {
  opacity: 1;
}

.concern-logo-card span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-top: 18px;
  border: 1px solid rgba(206, 233, 236, 0.95);
  border-radius: 22px;
  color: var(--blue);
  background:
    radial-gradient(circle at 70% 28%, rgba(230, 190, 90, 0.35) 0 12px, transparent 13px),
    linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(217, 165, 33, 0.15));
  font-size: 1.24rem;
  font-weight: 900;
}

.concern-logo-card strong,
.concern-logo-card small {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 12px;
  text-align: center;
}

.concern-logo-card strong {
  color: #13455e;
  font-size: 1rem;
  line-height: 1.22;
}

.concern-logo-card small {
  align-self: stretch;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 10px;
  color: var(--white);
  background: linear-gradient(90deg, #e8c25a, #c8941a);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes logoSlideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes logoSlideRight {
  from { transform: translateX(calc(-50% - 9px)); }
  to { transform: translateX(0); }
}

@media (max-width: 760px) {
  .concern-logo-card {
    width: 148px;
    min-height: 172px;
    border-radius: 20px;
  }

  .concern-logo-card span {
    width: 54px;
    height: 54px;
  }
}

/* Animated health concern videos */
.concern-motion-marquee {
  padding-left: 0;
  padding-right: 0;
}

.concern-motion-marquee .premium-concerns__head {
  padding: 0 22px;
}

.concern-motion-stage {
  position: relative;
  overflow: hidden;
  padding: 20px 0 56px;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.concern-motion-stage::before {
  content: "";
  position: absolute;
  inset: 38px 0 58px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 40%, rgba(14, 116, 144, 0.11), transparent 19rem),
    radial-gradient(circle at 76% 54%, rgba(251, 146, 60, 0.1), transparent 21rem),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
}

.concern-motion-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 34px;
  animation: concernMotionRight 44s linear infinite;
  will-change: transform;
}

.concern-motion-stage:hover .concern-motion-track {
  animation-play-state: paused;
}

.concern-motion-card {
  --float-y: 0px;
  --hover-y: 0px;
  --hover-scale: 1;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 188px;
  transform: translateY(calc(var(--float-y) + var(--hover-y))) scale(var(--hover-scale));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.concern-motion-card:nth-child(3n) {
  margin-top: 26px;
}

.concern-motion-card:nth-child(4n) {
  margin-top: 8px;
}

.concern-motion-card:hover {
  --hover-y: -12px;
  --hover-scale: 1.035;
  filter: saturate(1.05);
}

.concern-motion-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 164px;
  aspect-ratio: 1;
  overflow: hidden;
  isolation: isolate;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96) 0 42px, transparent 43px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.78));
  box-shadow:
    0 34px 76px rgba(20, 56, 92, 0.14),
    0 12px 26px rgba(8, 124, 145, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.concern-motion-visual::before {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 0;
  border: 1px solid rgba(202, 232, 237, 0.9);
  border-radius: inherit;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.94), transparent 34px),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 14px 26px rgba(255, 255, 255, 0.78),
    inset 0 -16px 28px rgba(8, 124, 145, 0.06);
}

.concern-motion-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(14, 116, 144, 0.04));
  filter: none;
}

.concern-motion-visual video {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  object-fit: contain;
  border-radius: 28px;
  mix-blend-mode: multiply;
}

.concern-motion-card span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(209, 232, 238, 0.86);
  border-radius: 999px;
  color: #164451;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(20, 56, 92, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

@keyframes concernMotionRight {
  from { transform: translateX(calc(-50% - 17px)); }
  to { transform: translateX(0); }
}

@keyframes concernMotionLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 17px)); }
}

.concern-motion-track--reverse {
  animation-name: concernMotionLeft;
  animation-duration: 48s;
}

.concern-motion-stage--diseases {
  padding-top: 0;
  padding-bottom: 40px;
}

/* Disease PNGs are self-contained cards (circle + icon + label baked in),
   so strip the decorative circle wrapper and the extra pill label. */
.concern-motion-card--disease {
  width: 268px;
  margin-top: 0 !important;
}

.concern-motion-card--disease .concern-motion-visual {
  width: 264px;
  aspect-ratio: 1;
  overflow: visible;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

.concern-motion-card--disease .concern-motion-visual::before,
.concern-motion-card--disease .concern-motion-visual::after {
  display: none;
}

.concern-motion-card--disease .concern-motion-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 34px rgba(20, 56, 92, 0.12));
  transition: transform 0.25s ease;
}

.concern-motion-card--disease:hover .concern-motion-visual img {
  transform: translateY(-6px) scale(1.04);
}

.concern-motion-card--disease span {
  display: none;
}

@media (max-width: 760px) {
  .concern-motion-stage {
    padding-bottom: 42px;
  }

  .concern-motion-track {
    gap: 22px;
    animation-duration: 36s;
  }

  .concern-motion-card {
    width: 146px;
  }

  .concern-motion-visual {
    width: 126px;
  }

  .concern-motion-visual video {
    width: 98px;
    height: 98px;
  }

  .concern-motion-card span {
    font-size: 0.8rem;
  }

  .concern-motion-card--disease {
    width: 168px;
  }

  .concern-motion-card--disease .concern-motion-visual {
    width: 164px;
  }
}

@media (max-width: 900px) {
  .condition-story__layout {
    grid-template-columns: 1fr;
  }

  .condition-visual-panel {
    position: relative;
    top: auto;
  }

  .cartoon-card {
    min-height: 430px;
  }

  .condition-steps {
    padding: 0;
  }
}

@media (max-width: 620px) {
  .condition-story {
    padding-left: 18px;
    padding-right: 18px;
  }

  .condition-step {
    grid-template-columns: 1fr;
  }

  .condition-step strong {
    width: max-content;
  }
}

/* Site-wide responsive polish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

main {
  overflow-x: hidden;
  overflow-x: clip;
}

.button,
.booking-trigger,
.faq-item,
.hero-slider__dots button {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero-slide__content {
    padding-top: 124px;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.55rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  h2 {
    font-size: 2.1rem;
    line-height: 1.1;
    letter-spacing: 0;
  }

  h3,
  p {
    letter-spacing: 0;
  }

  .header {
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav {
    justify-content: flex-start;
    gap: 18px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 8px 0;
    white-space: nowrap;
  }

  .hero {
    min-height: 610px;
  }

  .hero-slide img {
    object-position: 62% center;
  }

  .hero-slide__content p:not(.eyebrow),
  .premium-concerns__head p:not(.eyebrow),
  .doctor-profile__bio {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero__actions .button {
    flex: 1 1 220px;
  }

  .stats {
    gap: 12px;
  }

  .stats strong {
    font-size: 2.55rem;
  }

  .stat-card {
    padding: 20px;
  }

  .service-card {
    min-height: auto;
    padding: 14px;
  }

  .service-card__media {
    aspect-ratio: 1.22;
    border-radius: 16px;
  }

  .service-card .booking-trigger {
    width: 100%;
  }

  .why-card,
  .testimonial-card,
  .faq-item {
    padding: 20px;
  }

  .doctor-profile__trust {
    grid-template-columns: 1fr;
  }

  .doctor-profile__trust article {
    min-height: auto;
  }

  .doctor-profile__chips {
    gap: 8px;
  }

  .doctor-profile__chips span {
    padding: 9px 11px;
  }

  .doctor-service-list span {
    min-height: 76px;
  }

  .terms-hero {
    padding-top: 72px;
    padding-bottom: 30px;
  }

  .terms-content {
    border-radius: 22px;
  }

  .terms-content h2 {
    font-size: 1.34rem;
  }

  .terms-content h3 {
    font-size: 1rem;
  }

  .cta .button,
  .cta .booking-trigger {
    width: 100%;
  }

  .booking-form input,
  .booking-form textarea {
    font-size: 16px;
  }

  .booking-modal h2,
  .conditions-copy h2 {
    font-size: 2.05rem;
  }
}

@media (max-width: 520px) {
  .header {
    align-items: stretch;
    padding: 12px 14px;
  }

  .brand {
    flex: 1 1 100%;
    min-width: 0;
  }

  .brand__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .header__cta {
    order: 2;
    width: 100%;
    min-height: 42px;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-top: 2px;
    padding: 2px 0 0;
  }

  .hero {
    min-height: 590px;
  }

  .hero-slide__content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-top: 64px;
    padding-bottom: 92px;
  }

  .hero-slide__content p:not(.eyebrow) {
    margin-bottom: 22px;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
    flex-basis: 100%;
  }

  .hero-slider__dots {
    left: 14px;
    bottom: 24px;
  }

  .hero-slider__dots button {
    width: 28px;
  }

  .hero-slider__dots button.is-active {
    width: 42px;
  }

  .section {
    padding: 50px 16px;
  }

  .stats {
    padding-right: 16px;
    padding-left: 16px;
  }

  .stats strong {
    font-size: 2.3rem;
  }

  .premium-concerns {
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .premium-concerns__head {
    margin-bottom: 36px;
  }

  .concern-motion-stage {
    padding-top: 10px;
    padding-bottom: 34px;
  }

  .concern-motion-track {
    gap: 16px;
  }

  .concern-motion-card {
    width: 132px;
  }

  .concern-motion-visual {
    width: 112px;
  }

  .concern-motion-visual video {
    width: 88px;
    height: 88px;
  }

  .service-card__tag {
    left: 24px;
    top: 24px;
    width: 38px;
    height: 38px;
  }

  .doctor-profile__media {
    min-height: 360px;
  }

  .doctor-profile--page .doctor-profile__media {
    min-height: 390px;
  }

  .doctor-profile__badge {
    max-width: 185px;
  }

  .doctor-page-grid,
  .doctor-service-list {
    gap: 12px;
  }

  .doctor-info-card {
    padding: 18px;
  }

  .terms-content {
    padding: 20px;
    border-radius: 18px;
  }

  .terms-content p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .booking-modal h2,
  .conditions-copy h2 {
    font-size: 1.78rem;
  }

  .cta {
    margin-right: 16px;
    margin-left: 16px;
    padding: 24px;
    border-radius: 22px;
  }

  .footer {
    padding: 42px 16px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    max-width: calc(100vw - 24px);
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .floating-whatsapp__icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .brand {
    font-size: 0.9rem;
  }

  .nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .header__cta {
    font-size: 0.82rem;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
  }

  .hero {
    min-height: 570px;
  }

  .service-card li,
  .doctor-info-card li,
  .faq-item p {
    font-size: 0.88rem;
  }
}

/* Mobile navigation (hamburger drawer) */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #e2eef6;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle__bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav__cta {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(10, 18, 30, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .header {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    /* backdrop-filter creates a containing block for the fixed drawer,
       which collapses its height — remove it on mobile so the drawer
       positions against the viewport and fills full height. */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header.is-open {
    z-index: 60;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  /* The persistent top CTA collapses into the drawer on small screens */
  .header > .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 92px;
    right: 0;
    bottom: 0;
    z-index: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    width: min(320px, 84vw);
    margin: 0;
    padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 1rem;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: -26px 0 60px rgba(16, 32, 51, 0.18);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease;
  }

  .header.is-open .nav {
    transform: translateX(0);
    visibility: visible;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 14px 12px;
    border-radius: 12px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 800;
    white-space: normal;
  }

  .nav a:hover {
    background: var(--soft);
    color: var(--blue);
  }

  .nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 10px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 14px 28px rgba(14, 116, 144, 0.26);
    cursor: pointer;
    font-weight: 800;
  }

  .header.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .header.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Footer responsive layout */
@media (max-width: 980px) {
  .footer {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  /* Mobile footer: every group collapses into a tappable dropdown row */
  .footer {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__brand {
    margin-bottom: 20px;
  }

  .footer__col,
  .footer__concerns {
    gap: 0;
  }

  .footer__concerns {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .footer__col h3,
  .footer__concerns > h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .footer__col h3::after,
  .footer__concerns > h3::after {
    content: "+";
    margin-left: 12px;
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
  }

  .footer__col.is-open h3::after,
  .footer__concerns.is-open > h3::after {
    content: "\2212";
  }

  .footer .footer__col > :not(h3),
  .footer .footer__concerns > :not(h3) {
    display: none;
  }

  .footer .footer__col.is-open > a,
  .footer .footer__col.is-open > button,
  .footer .footer__col.is-open > p {
    display: block;
    margin: 0;
    padding: 9px 2px;
  }

  .footer .footer__col.is-open > div,
  .footer .footer__concerns.is-open > div {
    display: grid;
    padding: 12px 2px 16px;
  }

  .footer__email {
    word-break: break-all;
  }

  .footer p {
    max-width: none;
  }
}

@media (max-width: 380px) {
  .footer {
    grid-template-columns: 1fr;
  }

  .footer .footer__base {
    flex-direction: column;
    align-items: center;
  }
}

/* Legal / policy pages */
.legal-page {
  background: #fffaf5;
}

.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) max(20px, 5vw) clamp(56px, 7vw, 88px);
  color: var(--ink);
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-weight: 800;
}

.legal__back:hover {
  color: var(--blue);
}

.legal h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.legal__updated {
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.legal__body h2 {
  max-width: none;
  margin: 40px 0 14px;
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.legal__body h3 {
  margin: 28px 0 10px;
  font-size: 1.12rem;
  color: var(--ink);
}

.legal__body p {
  margin-bottom: 16px;
  color: #3b4757;
  font-size: 1.02rem;
  line-height: 1.82;
}

.legal__body ul {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding-left: 22px;
  color: #3b4757;
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal__body li {
  padding-left: 4px;
}

.legal__body li::marker {
  color: var(--blue);
}

.legal__body a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: break-word;
}

.legal__body a:hover {
  color: var(--blue);
}

.legal__body strong {
  color: var(--ink);
}

.legal__note {
  margin: 8px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  background: #eef6fb;
}

.legal__note p {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .legal__body p,
  .legal__body ul {
    font-size: 0.96rem;
  }
}

/* Google reviews auto-scrolling marquee */
.reviews-section {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.reviews-section .section__head {
  padding-left: max(22px, calc((100vw - 1180px) / 2));
  padding-right: max(22px, calc((100vw - 1180px) / 2));
}

.reviews-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  line-height: 1;
}

.reviews-rating__g {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.reviews-rating strong {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
}

.reviews-rating .review-stars {
  font-size: 1.12rem;
}

.reviews-rating__count {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #fbbc04;
  font-size: 1.05rem;
  line-height: 1;
}

.reviews-marquee {
  overflow: hidden;
  padding: 12px 0 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 6px 0;
  will-change: transform;
  animation: reviewsScroll 56s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  from {
    transform: translateX(calc(-50% - 10px));
  }
  to {
    transform: translateX(0);
  }
}

.review-card {
  flex: 0 0 auto;
  display: grid;
  align-content: start;
  gap: 13px;
  width: 340px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 56, 92, 0.07);
}

.review-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.review-card__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.review-card__meta strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.review-card__meta span {
  color: var(--muted);
  font-size: 0.85rem;
}

.review-card__google {
  width: 22px;
  height: 22px;
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-card__verified {
  width: 17px;
  height: 17px;
}

.review-card__text {
  margin: 0;
  color: #3b4757;
  font-size: 0.96rem;
  line-height: 1.62;
}

@media (max-width: 520px) {
  .review-card {
    width: 290px;
    padding: 20px;
  }

  .reviews-track {
    gap: 16px;
    animation-duration: 46s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

/* Why choose us - checklist */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(20, 56, 92, 0.06);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 116, 144, 0.24);
  box-shadow: 0 18px 38px rgba(20, 56, 92, 0.1);
}

.why-check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 6px 14px rgba(14, 116, 144, 0.28);
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 640px) {
  .why-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-item {
    padding: 15px 16px;
    font-size: 0.96rem;
  }
}

/* Contact Us section + form */
.contact {
  background: var(--soft);
}

.contact__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact__intro h2 {
  margin-bottom: 14px;
}

.contact__intro p:not(.eyebrow) {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.contact__call:hover {
  color: var(--blue);
}

.contact__info {
  display: grid;
  gap: 16px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.contact__info li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact__info-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(14, 116, 144, 0.1);
  font-size: 1.05rem;
}

.contact__info a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact__info a:hover {
  color: var(--blue);
}

.footer__address {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer__email {
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(20, 56, 92, 0.09);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form__submit {
  min-height: 52px;
  margin-top: 4px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(14, 116, 144, 0.28);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(14, 116, 144, 0.34);
}

@media (max-width: 860px) {
  .contact__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

/* Hero poster slide (full branded graphic, not cropped) */
.hero-slide--poster {
  background: #ffffff;
}

.hero-slide--poster img {
  object-fit: contain;
  transform: none;
  padding: 12px;
}

.hero-slide--poster.is-active img {
  transform: none;
}

/* keep the slider dots visible on the white poster slide too */
.hero-slider__dots button {
  box-shadow: 0 0 0 1px rgba(16, 32, 51, 0.18);
}
