/* =========================================================
   Jaipur Lungs Clinic — v3 Stylesheet
   Palette derived from logo: deep indigo-violet + royal blue
   ========================================================= */

/* --- Design tokens --- */
:root {
  /* Core brand */
  --brand: #2E2A8E;
  /* deep indigo-violet (logo) */
  --brand-dark: #1E1B65;
  /* darker shade for depth */
  --brand-deepest: #141245;
  /* near-black violet for CTAs */
  --accent: #2E6BE6;
  /* royal blue accent */
  --accent-2: #4F46E5;
  /* indigo bridge */
  --accent-soft: #DBE4FF;
  /* tint chip bg */

  /* Surface */
  --paper: #F8FAFF;
  /* very soft indigo-tinted white */
  --paper-2: #FFFFFF;
  --wash: #EEF2FF;
  /* section wash */
  --wash-2: #F1F4FB;

  /* Ink */
  --ink: #0F1633;
  --ink-2: #1E2951;
  --muted: #5B6685;
  --muted-2: #8792B0;

  /* Borders / dividers */
  --line: #E5EAF5;
  --line-2: #D8DFF0;

  /* Accents */
  --success: #10B981;
  --warn-bg: #FFF6E6;
  --warn-fg: #9A6A00;

  /* Shadow system */
  --shadow-sm: 0 1px 2px rgba(20, 18, 69, .05);
  --shadow-md: 0 4px 12px -2px rgba(20, 18, 69, .08), 0 2px 4px rgba(20, 18, 69, .04);
  --shadow-lg: 0 18px 40px -20px rgba(20, 18, 69, .25), 0 4px 12px -4px rgba(20, 18, 69, .1);
  --shadow-ring: 0 0 0 1px rgba(20, 18, 69, .05), 0 30px 60px -30px rgba(20, 18, 69, .3);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm: 0.5rem;
  --r-md: 0.875rem;
  --r-lg: 1.25rem;
  --r-xl: 1.75rem;
  --r-pill: 999px;
}

/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: 0;
  background: transparent;
  color: inherit;
}

::selection {
  background: var(--accent-soft);
  color: var(--brand-dark);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.section-title {
  font-size: 34px;
  line-height: 1.12;
  margin-top: 1rem;
}

.section-title .hl {
  color: var(--accent);
}

.section-title .hl-brand {
  color: var(--brand);
}

.section-lede {
  font-size: 16px;
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 42rem;
}

.center {
  text-align: center;
}

.center .section-lede {
  margin-left: auto;
  margin-right: auto;
}

/* --- Section spacing --- */
section {
  padding: 60px 0;
}



@media (min-width: 1024px) {
  section {
    padding: 60px 0;
  }
}

.section-head {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .section-head {
    margin-bottom: 30px;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(46, 42, 142, .6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -12px rgba(46, 42, 142, .7);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(46, 107, 230, .5);
}

.btn-accent:hover {
  background: #1E5EDB;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line-2);
}

.btn-ghost:hover {
  border-color: var(--brand);
  background: var(--wash);
}

.btn-dark-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.btn-wa {
  background: #22C55E;
  color: #fff;
}

.btn-wa:hover {
  background: #16A34A;
}

.btn-light {
  background: #fff;
  color: var(--brand);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .25);
}

/* =========================================================
   1. HEADER
   ========================================================= */
.topbar {
  background: var(--brand-deepest);
  color: #E5E7EB;
  font-size: 12.5px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 0;
  gap: 1rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.topbar-left a,
.topbar-right a {
  align-items: center;
  display: flex;
  gap: 4px;
}

.topbar-left span,
.topbar-right span {
  align-items: center;
  display: flex;
  gap: 4px;
}

.topbar a:hover {
  opacity: 1;
  color: #fff;
}

.topbar .sep {
  opacity: .3;
}

.topbar svg {
  width: 16px;
  height: 16px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  height: 72px;
}

.brand-logo {
  height: 42px;
  width: auto;
}

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

.primary-nav {
  display: none;
}

@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.primary-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: .25rem 0;
}

.primary-nav a:hover {
  color: var(--brand);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
}

@media (min-width: 640px) {
  .nav-cta {
    display: inline-flex;
  }
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  color: var(--brand);
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

.burger svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

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

.mobile-menu nav {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mobile-menu a {
  padding: .75rem .25rem;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu .btn {
  margin-top: .75rem;
}


/* =========================================================
   2. HERO / BANNER — reference-exact rebuild
   Full-width edge-to-edge doctor photo on the left with a soft
   purple curved mask on the right edge. Content centered. Lungs
   illustration + stats card on the right.
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #F3F0FB 0%, #EDE8F8 55%, #F0EBFA 100%);
  min-height: 580px;
}

/* Background decorative dots (right side molecular pattern) */
.hero-dots-right {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(139, 124, 216, .45) 1.3px, transparent 1.3px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 1;
}

/* Big lung illustration behind the content (right) */
.hero-lung-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

@media (min-width: 1200px) {
  .hero-lung-bg {
    width: 440px;
    right: 1%;
  }
}

@media (min-width: 1400px) {
  .hero-lung-bg {
    width: 480px;
    right: 2%;
  }
}

@media (max-width: 1199px) {
  .hero-lung-bg {
    width: 340px;
    right: -30px;
    opacity: .55;
  }
}

@media (max-width: 899px) {
  .hero-lung-bg {
    width: 280px;
    right: -60px;
    opacity: .3;
    top: auto;
    bottom: 10%;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-lung-bg {
    width: 220px;
    right: -70px;
    opacity: .25;
  }
}

/* Main grid: doctor photo column | content column (lungs float absolute) */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 580px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 32% 1fr;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-inner {
    grid-template-columns: 28% 1fr 260px;
    padding-right: 1.5rem;
    column-gap: 1.5rem;
  }
}

@media (min-width: 1400px) {
  .hero-inner {
    grid-template-columns: 28% 1fr 280px;
    column-gap: 2rem;
  }
}

/* Doctor photo — full column height, soft purple curve on right */
.hero-doctor {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero-doctor {
    min-height: 580px;
  }
}

.hero-doctor .doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  position: absolute;
  inset: 0;
}


/* On mobile the photo becomes shorter and doesn't need a right arc */
@media (max-width: 899px) {
  .hero-doctor .doctor-img {
    object-position: center 10%;
  }

}

/* Content column */
.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-content {
    padding-left: 100px;
    text-align: left;
    align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding-left: 80px;
  }
}

/* Eyebrow pill (shield icon + text) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid rgba(139, 124, 216, .3);
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 14px -6px rgba(46, 42, 142, .12);
}

.hero-badge .hb-ico {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}

/* Headline */
.hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 1.35rem;
  color: var(--ink);
}

.hero-title .hl {
  color: var(--brand);
  font-weight: 500;
}

.hero-title-underline {
  display: block;
  width: 110px;
  height: 3px;
  background: var(--brand);
  border-radius: 999px;
  margin-top: .85rem;
}

@media (max-width: 899px) {
  .hero-title-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1.25rem;
  max-width: 36rem;
  line-height: 1.6;
}

@media (max-width: 899px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-subtitle strong {
  color: var(--brand);
  font-weight: 700;
}

/* Feature icons row */
.hero-features {
  margin-top: 1.75rem;
  display: flex;
  gap: .3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .hero-features {
    justify-content: flex-start;
  }
}

.hf-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  flex: 0 1 auto;
  min-width: 92px;
}

/* Tick marks on left & right of icon (decorative) */
.hf-item::before,
.hf-item::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 14px;
  height: 1px;
  background: rgba(139, 124, 216, .5);
}

.hf-item::before {
  left: -7px;
}

.hf-item::after {
  right: -7px;
}

.hf-item:first-of-type::before,
.hf-item:last-of-type::after {
  display: none;
}

.hf-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(225, 219, 246, .55);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hf-ico img {
  width: 28px;
  height: 28px;
}

.hf-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-2);
  text-align: center;
  line-height: 1.25;
}

@media (max-width: 560px) {

  .hf-item::before,
  .hf-item::after {
    display: none;
  }

  .hf-item {
    min-width: calc(50% - .5rem);
  }
}

/* CTAs */
.hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

.hero-ctas .btn {
  padding: .95rem 1.75rem;
  font-size: .95rem;
}

.hero-ctas .btn-ghost {
  background: transparent;
  border: 1.5px solid var(--brand);
  color: var(--brand);
}

.hero-ctas .btn-ghost:hover {
  background: rgba(46, 42, 142, .06);
}

/* Stats card — bottom right */
.hero-stats-card {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: #FFFFFF;
  border: 1px solid rgba(139, 124, 216, .2);
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px -20px rgba(46, 42, 142, .25);
  max-width: 280px;
  margin: 1.25rem auto 1.5rem;
}

@media (min-width: 900px) {

  /* 900-1199: place inline below CTAs inside content column */
  .hero-stats-card {
    margin: 1.25rem 0 0;
    max-width: 320px;
  }
}

@media (min-width: 1200px) {

  /* 1200+: moves to its own right-column slot */
  .hero-stats-card {
    align-self: end;
    justify-self: end;
    margin: 0 0 1.5rem 0;
    max-width: 260px;
  }
}

.hsc-icon {
  width: 38px;
  height: 38px;
  color: var(--brand);
  flex-shrink: 0;
}

.hsc-icon svg {
  width: 100%;
  height: 100%;
}

.hsc-body {
  line-height: 1.25;
}

.hsc-body strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
}

.hsc-body span {
  display: block;
  font-size: .88rem;
  color: var(--ink);
  font-weight: 500;
  margin-top: .05rem;
}

.hsc-body em {
  display: block;
  font-style: normal;
  font-size: .76rem;
  color: var(--muted);
  margin-top: .3rem;
  border-top: 1px solid rgba(139, 124, 216, .15);
  padding-top: .3rem;
}


/* =========================================================
   4. TREATMENTS (after banner, before Clinic)
   ========================================================= */
.treatments {
  background: var(--paper-2);
}

.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 560px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .treatments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.treatment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 11px 20px -8px rgb(0 0 0 / 25%), 0 4px 12px -4px rgb(0 0 0 / 10%);
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.treatment-card .t-img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--wash), var(--accent-soft));
}

.treatment-card .t-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.treatment-card:hover .t-img img {
  transform: scale(1.05);
}

.treatment-card .t-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: var(--r-sm);
  font-weight: 700;
}

.treatment-card .t-body {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-card .t-body h3 {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.treatment-card .t-body p {
  font-size: 14px;
  margin-top: .5rem;
  flex: 1;
}

.treatment-card .t-link {
  margin-top: .9rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.treatment-card .t-link svg {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}

.treatment-card:hover .t-link svg {
  transform: translateX(3px);
}

/* =========================================================
   5. CLINIC — aligned image + content
   ========================================================= */
.clinic {
  background: linear-gradient(359deg, var(--paper) 0%, #dee6ff 100%);
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .clinic-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }
}

.clinic-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: var(--shadow-ring);
}

.clinic-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-visual .v-chip {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  padding: .5rem .9rem;
  border-radius: var(--r-pill);
  font-size: .8rem;
  color: var(--brand);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.clinic-visual .v-chip svg {
  width: 14px;
  height: 14px;
}

.clinic-visual .v-action {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.clinic-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.clinic-content p {
  color: var(--muted);
  line-height: 1.65;
}

.clinic-content p+p {
  margin-top: .85rem;
}

.clinic-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.clinic-features li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .2s, transform .2s;
}

.clinic-features li:hover {
  border-color: var(--accent);
  transform: translateX(3px);
}

.clinic-features .ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.clinic-features .ico svg {
  width: 16px;
  height: 16px;
}

.clinic-features strong {
  font-weight: 700;
  color: var(--ink);
  font-size: .9rem;
  display: block;
}

.clinic-features span {
  font-size: .78rem;
  color: var(--muted);
}

/* =========================================================
   6. ABOUT DOCTOR — dark editorial split, distinct from hero
   ========================================================= */
.about-doc {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(46, 107, 230, .18), transparent 60%),
    linear-gradient(160deg, var(--brand-deepest) 0%, var(--brand-dark) 55%, var(--brand) 100%);
  color: #fff;
}

.about-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .06) 1px, transparent 0);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
  pointer-events: none;
}

.about-bg-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(46, 107, 230, .28), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.about-bg-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(79, 70, 229, .3), transparent 65%);
  filter: blur(25px);
  pointer-events: none;
}

.eyebrow-on-dark {
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .1);
}

.eyebrow-on-dark::before {
  background: #93C5FD !important;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.about-visual {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .about-visual {
    margin: 0;
  }
}

.about-visual-inner {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-2), var(--brand));
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .1);
}

.about-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-visual-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 18, 69, .4));
  pointer-events: none;
}

.about-visual-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  color: var(--brand);
  padding: .45rem .9rem;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-visual-chip .pulse {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(46, 107, 230, .6);
  animation: pulse 1.8s ease-in-out infinite;
}

.about-overlay-card {
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 360px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 1rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .1);
}

.aoc-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.aoc-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aoc-ico svg {
  width: 18px;
  height: 18px;
}

.aoc-row strong {
  display: block;
  font-size: .9rem;
  color: var(--ink);
  font-weight: 700;
}

.aoc-row span {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .1rem;
}

.aoc-divider {
  height: 1px;
  background: var(--line);
  margin: .75rem 0;
}

.about-content {
  position: relative;
}

.about-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  margin-top: 1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-content h2 .hl {
  color: #93C5FD;
  font-style: italic;
  font-weight: 500;
}

.about-content .degrees {
  font-size: .82rem;
  color: #93C5FD;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: .6rem;
  text-transform: uppercase;
}

.about-lede {
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.65;
  margin-top: 15px;
  max-width: 38rem;
}

.about-lede strong {
  color: #fff;
  font-weight: 700;
}

.about-highlights {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.ah-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s, transform .2s;
}

.ah-item:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(147, 197, 253, .4);
  transform: translateX(3px);
}

.ah-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ah-ico svg {
  width: 20px;
  height: 20px;
}

.ah-item strong {
  display: block;
  font-size: .95rem;
  color: #fff;
  font-weight: 700;
}

.ah-item span {
  display: block;
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  margin-top: .1rem;
  justify-content: center;
  display: flex;
}

.about-doc .credentials {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.about-doc .cred-chip {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  letter-spacing: 0.04em;
}

.about-ctas {
  margin-top: 20px;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* =========================================================
   7. CK BIRLA COLLABORATION — 2 cards joined by center connector
   ========================================================= */
.collab {
  background: linear-gradient(180deg, var(--wash) 0%, var(--paper) 100%);
}

/* Layout: cards left+right with connector in middle */
.collab-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .collab-layout {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
  }
}

.collab-card {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: var(--shadow-ring);
  transition: transform .3s ease;
}

.collab-card:hover {
  transform: translateY(-4px);
}

.collab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.collab-card:hover img {
  transform: scale(1.04);
}

.collab-card .c-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.5rem 1.3rem;
  background: linear-gradient(0deg, rgba(20, 18, 69, .92) 0%, rgba(20, 18, 69, .6) 60%, transparent 100%);
  color: #fff;
}

.collab-card .c-role {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.collab-card .c-overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.collab-card .c-overlay>span:not(.c-role) {
  display: block;
  font-size: .82rem;
  opacity: .78;
  margin-top: .3rem;
}

/* The middle connector between the two cards */
.collab-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  min-width: 180px;
}

@media (max-width: 899px) {
  .collab-connector {
    flex-direction: row;
    padding: .5rem 0;
  }
}

@media (min-width: 900px) {
  .collab-connector {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
}

.cc-line {
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  height: 2px;
  min-width: 40px;
}

@media (min-width: 900px) {
  .cc-line {
    background: linear-gradient(180deg, transparent, var(--accent) 50%, transparent);
    width: 2px;
    height: auto;
    min-height: 40px;
  }
}

.cc-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px rgba(46, 107, 230, .1),
    0 0 0 12px rgba(46, 107, 230, .05),
    0 10px 25px -5px rgba(46, 107, 230, .5);
  flex-shrink: 0;
  margin: 0 .5rem;
}

@media (min-width: 900px) {
  .cc-badge {
    margin: .8rem 0;
  }
}

.cc-ico {
  color: #fff;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cc-ico svg {
  width: 100%;
  height: 100%;
}

.cc-label {
  text-align: center;
  white-space: nowrap;
}

.cc-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--brand);
  font-weight: 700;
}

.cc-label span {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .15rem;
}

@media (max-width: 899px) {
  .cc-label {
    display: none;
  }
}

.collab-features {
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

@media (min-width: 640px) {
  .collab-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collab-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collab-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.collab-features li:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.collab-features .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.collab-features .ico svg {
  width: 16px;
  height: 16px;
}

/* =========================================================
   8. CONDITIONS
   ========================================================= */
.conditions {
  background: #e1e1e1a6;
}

.cond-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.cond-tab {
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line-2);
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.cond-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cond-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.cond-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cond-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.cond-card {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.cond-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cond-card .c-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--wash);
}

.cond-card .c-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cond-card .c-thumb svg {
  width: 100%;
  height: 100%;
  padding: 20px;
  color: var(--brand);
}

.cond-card .c-body {
  flex: 1;
}

.cond-card .c-badges {
  display: flex;
  gap: .35rem;
  margin-bottom: .35rem;
  flex-wrap: wrap;
}

.cond-badge {
  font-size: 10px;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cond-badge.chronic {
  background: #E0E7FF;
  color: var(--brand);
}

.cond-badge.critical {
  background: #FEE2E2;
  color: #991B1B;
}

.cond-badge.progressive {
  background: #FFEDD5;
  color: #9A3412;
}

.cond-badge.complex {
  background: #F3E8FF;
  color: #6B21A8;
}

.cond-badge.investigative {
  background: #E0F2FE;
  color: #075985;
}

.cond-badge.sleep {
  background: #ECFCCB;
  color: #3F6212;
}

.cond-badge.duration {
  font-size: 9.5px;
  background: var(--wash);
  color: var(--muted);
}

.cond-card h4 {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.cond-card p {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .35rem;
}

.cond-card .c-cta {
  margin-top: .65rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.cond-warning {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--warn-bg);
  border: 1px dashed #F59E0B;
  border-radius: var(--r-md);
  font-size: .85rem;
  text-align: center;
}

.cond-warning strong {
  color: #6B4900;
}

/* =========================================================
   9. CTA STRIP
   ========================================================= */
.cta-strip {
  padding: 3rem 0;
  margin-top: 50px;
}

.cta-strip-inner {
  position: relative;
  border-radius: var(--r-xl);
  padding: 2rem;
  background: linear-gradient(110deg, var(--brand-deepest) 0%, var(--brand) 40%, var(--accent-2) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 10px;
}

@media (min-width: 900px) {
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    padding: 2.25rem 3rem;
  }
}

.cta-strip-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 60%);
  pointer-events: none;
}

.cta-strip-inner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 107, 230, .25), transparent 60%);
  pointer-events: none;
}

.cta-strip .eyebrow {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.cta-strip .eyebrow::before {
  background: var(--accent);
}

.cta-strip h2 {
  color: #fff;
  font-size: 28px;
  margin: 20px 0;
}

.cta-strip-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  z-index: 1;
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 260px;
}

/* =========================================================
   10. WHY CHOOSE
   ========================================================= */
.why {
  background: linear-gradient(332deg, var(--paper) 0%, #e5e5e5 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  position: relative;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.why-card::after {
  content: attr(data-num);
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  opacity: .8;
  letter-spacing: -0.02em;
}

.why-card .w-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(46, 42, 142, .45);
  position: relative;
  z-index: 1;
}

.why-card .w-ico svg {
  width: 22px;
  height: 22px;
}

.why-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-top: 1.2rem;
  font-family: var(--font-body);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: .86rem;
  color: var(--muted);
  margin-top: .5rem;
  line-height: 1.6;
}

/* =========================================================
   11. INTERVENTIONAL PULMONOLOGY
   ========================================================= */
.ip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 600px 400px at 0% 50%, rgba(46, 107, 230, .15), transparent 70%),
    linear-gradient(135deg, var(--brand-deepest) 0%, var(--brand) 60%, var(--brand-dark) 100%);
  color: #fff;
}

.ip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.ip-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .ip-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.ip-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
  background: linear-gradient(135deg, #1E3A8A, #2E2A8E);
  height: 450px;
  width: 100%;
}

.ip-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ip-visual-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, .95);
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  color: var(--brand);
  font-size: .8rem;
}

.ip-visual-overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.ip-content .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.ip-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin-top: 1rem;
}

.ip-content h2 .hl {
  color: #93C5FD;
}

.ip-content>p {
  color: rgba(255, 255, 255, .75);
  margin-top: 1rem;
  line-height: 1.65;
}

.ip-procs {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}

@media (min-width: 560px) {
  .ip-procs {
    grid-template-columns: 1fr 1fr;
  }
}

.ip-proc {
  padding: .65rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ip-proc .dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ip-proc .dot svg {
  width: 10px;
  height: 10px;
  color: #fff;
}

.ip-benefits {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.ip-benefit {
  padding: .35rem .8rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =========================================================
   12. BENEFITS (Patient Benefits)
   ========================================================= */
.benefits {
  background: var(--paper);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  padding: 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.benefit-card .b-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.benefit-card .b-ico svg {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem;
  color: var(--ink);
  font-family: var(--font-body);
}

.benefit-card p {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .5rem;
  line-height: 1.5;
}

/* =========================================================
   13. DIAGNOSTICS
   ========================================================= */
.diag {
  background: linear-gradient(160deg, var(--brand-dark), var(--brand-deepest));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.diag::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(46, 107, 230, .2), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(46, 42, 142, .3), transparent 60%);
  pointer-events: none;
}

.diag .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.diag .section-title {
  color: #fff;
}

.diag .section-title .hl {
  color: #93C5FD;
}

.diag-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}

@media (min-width: 600px) {
  .diag-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .diag-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diag-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.diag-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, .3);
}

.diag-card .d-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.diag-card .d-ico svg {
  width: 22px;
  height: 22px;
}

.diag-card .d-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .15rem;
}

.diag-card h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.diag-card p {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .35rem;
  line-height: 1.5;
}

.diag-cta {
  text-align: center;
  margin-top: 2rem;
}

/* =========================================================
   14. REVIEWS (Google)
   ========================================================= */
.reviews {
  background: var(--paper-2);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.google-rating-card {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: 4px 14px;
  box-shadow: var(--shadow-sm);

  margin: auto;
  justify-content: center;
  display: flex;
  margin-top: 29px;
  border: 2px solid #d3d3d3;
  width: max-content;
  border-radius: 10px;
}

.google-rating-card .g-logo {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.google-rating-card strong {
  font-size: 14px;
  color: #f19300;
}

.google-rating-card .stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: .08em;
}

.google-rating-card span {
  font-size: 12px;
  color: #2a2a2a;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .25s, transform .25s;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.review-card .r-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card .r-stars {
  color: #F59E0B;
  font-size: .95rem;
  letter-spacing: .1em;
}

.review-card .r-g {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}

.review-card blockquote::before {
  content: "“";
  color: var(--accent);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.15rem;
}

.review-card .r-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}

.review-card .r-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card .r-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}

.review-card .r-sub {
  font-size: .72rem;
  color: var(--muted);
}

/* =========================================================
   15. GALLERY
   ========================================================= */
.gallery {
  background: var(--wash);
}

.gallery-intro {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}

.gallery-intro .eyebrow {
  margin-bottom: .75rem;
}

.gallery-intro h3 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.gallery-intro p {
  font-size: .88rem;
  color: var(--muted);
  margin-top: .5rem;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--wash), var(--accent-soft));
  cursor: pointer;
  transition: transform .3s;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.large {
  grid-row: span 2;
  aspect-ratio: 4/6;
}

@media (max-width: 639px) {
  .gallery-item.large {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

.gallery-item .g-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem .85rem .7rem;
  background: linear-gradient(0deg, rgba(20, 18, 69, .85) 0%, transparent 100%);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.gallery-item:hover .g-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery-item .g-caption {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   16. BOOKING + CONTACT
   ========================================================= */
.booking {
  background: linear-gradient(160deg, var(--brand-deepest), var(--brand-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(46, 107, 230, .15), transparent 70%);
  pointer-events: none;
}

.booking .section-title {
  color: #fff;
}

.booking .section-title .hl {
  color: #93C5FD;
}

.booking .section-lede {
  color: rgba(255, 255, 255, .7);
}

.booking .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

@media (min-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
}

.contact-row .c-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row .c-ico svg {
  width: 18px;
  height: 18px;
}

.contact-row .c-label {
  font-size: .68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.contact-row .c-val {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-top: .1rem;
}

.contact-map {
  margin-top: .25rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  aspect-ratio: 30/10;
  background: #fff;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map .map-fallback {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #DBEAFE, #BFDBFE);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: .85rem;
  gap: .5rem;
}

.booking-form {
  background: #fff;
  color: var(--ink);
  padding: 1.75rem;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .4);
}

.booking-form h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.booking-form p.helper {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .35rem;
}

.booking-form form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 107, 230, .14);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-form .btn {
  justify-content: center;
}

/* =========================================================
   17. FAQ with image
   ========================================================= */
.faq {
  background: var(--paper-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1.15fr 0.85fr ;
    gap: 3rem;
  }
}

.faq-visual {
  position: relative;
  position: sticky;
  top: 100px;
}

.faq-visual-inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: var(--shadow-ring);
}

.faq-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-visual-overlay {
  position: absolute;
  inset: auto 1rem 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
}

.faq-visual-overlay strong {
  display: block;
  font-family: var(--font-display);
  color: var(--brand);
  font-size: 1rem;
}

.faq-visual-overlay span {
  font-size: .78rem;
  color: var(--muted);
}

.faq-visual::before {
  content: "?";
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 700;
  color: var(--wash);
  line-height: 1;
  z-index: -1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 10px 25px -15px rgba(46, 107, 230, .3);
}

.faq-item summary {
  list-style: none;
  padding: 1rem 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E2A8E' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: transform .25s;
}

.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E6BE6' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}

.faq-item .faq-body {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

/* =========================================================
   18. FOOTER
   ========================================================= */
.footer {
  background: var(--brand-deepest);
  color: rgba(255, 255, 255, .75);
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
  }
}

.footer-brand img {
  height: 54px;
  width: auto;
}

.footer-brand p {
  font-size: .82rem;
  margin-top: 1rem;
  line-height: 1.65;
  max-width: 30ch;
}

.footer-socials {
  margin-top: 1.25rem;
  display: flex;
  gap: .5rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.footer-socials a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 15px;
  height: 15px;
  color: #fff;
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col a svg {
  width: 12px;
  height: 12px;
  opacity: .6;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
}

.footer-contact .ico {
  margin-top: .15rem;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact .ico svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  justify-content: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom .links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom a:hover {
  color: #fff;
}

/* =========================================================
   Sticky Mobile CTA (like app)
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  gap: .5rem;
  box-shadow: 0 -10px 30px -15px rgba(20, 18, 69, .15);
}

@media (max-width: 767px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

.mobile-cta a {
  flex: 1;
  padding: .75rem;
  border-radius: var(--r-md);
  font-size: .82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.mobile-cta .m-call {
  background: var(--brand);
  color: #fff;
}

.mobile-cta .m-wa {
  background: #22C55E;
  color: #fff;
}

.mobile-cta .m-book {
  background: var(--accent);
  color: #fff;
}

.mobile-cta svg {
  width: 16px;
  height: 16px;
}

/* =========================================================
   Animations
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .7s ease forwards;
  }

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

  .hero-content>* {
    animation: fadeUp .7s ease both;
  }

  .hero-content>*:nth-child(1) {
    animation-delay: .05s;
  }

  .hero-content>*:nth-child(2) {
    animation-delay: .15s;
  }

  .hero-content>*:nth-child(3) {
    animation-delay: .25s;
  }

  .hero-content>*:nth-child(4) {
    animation-delay: .35s;
  }

  .hero-content>*:nth-child(5) {
    animation-delay: .45s;
  }
}

/* =========================================================
   Utility
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only {
  @extend .visually-hidden;
}


/* =========================================================
   SWIPER — mobile card carousels
   Swiper JS only initialises below 768px. On desktop, the grid
   behaves as a normal CSS grid. Below we override when a grid
   has been converted into a Swiper.
   ========================================================= */
.is-mobile-swiper {
  display: block !important;
  padding: .25rem .75rem 2.25rem !important;
  margin: 0 -1.25rem !important;
  /* bleed to screen edge */
  overflow: visible;
}

.is-mobile-swiper .swiper-wrapper {
  display: flex;
}

.is-mobile-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.is-mobile-swiper .swiper-slide>* {
  width: 100%;
}

/* Pagination bullets */
.is-mobile-swiper .swiper-pagination {
  position: absolute;
  bottom: .4rem !important;
  left: 0;
  right: 0;
  text-align: center;
}

.is-mobile-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: var(--line-2);
  opacity: 1;
  transition: width .25s, background .25s;
}

.is-mobile-swiper .swiper-pagination-bullet-active {
  background: var(--brand);
  width: 22px;
  border-radius: 4px;
}

/* When Swiper is active, override the flat grid layout */
@media (max-width: 767px) {

  .treatments-grid.is-mobile-swiper,
  .why-grid.is-mobile-swiper,
  .cond-grid.is-mobile-swiper,
  .benefits-grid.is-mobile-swiper,
  .diag-grid.is-mobile-swiper,
  .reviews-grid.is-mobile-swiper,
  .collab-features.is-mobile-swiper {
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  /* Slides inside dark sections (IP, Diagnostics, Booking) need light adjustment */
  .diag .is-mobile-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .3);
  }

  .diag .is-mobile-swiper .swiper-pagination-bullet-active {
    background: #93C5FD;
  }
}

/* Before Swiper is ready, prevent horizontal overflow so mobile
   view looks clean during the <100ms init */
@media (max-width: 767px) {

  .treatments-grid:not(.is-mobile-swiper),
  .cond-grid:not(.is-mobile-swiper),
  .why-grid:not(.is-mobile-swiper),
  .diag-grid:not(.is-mobile-swiper),
  .reviews-grid:not(.is-mobile-swiper) {
    /* fallback: scrolls horizontally if swiper never inits */
    overflow: visible;
  }
}


/* =========================================================
   ABOUT DOCTOR — content-left / image-right order override
   (HTML was reordered; keep CSS simple)
   ========================================================= */
.about-doc .about-grid {
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-doc .about-grid {
    grid-template-columns: 1.15fr 0.9fr;
  }
}

.about-doc .about-content {
  order: 1;
}

.about-doc .about-visual {
  order: 2;
}


/* =========================================================
   FAQ — replace doctor photo with portrait graphic
   The graphic already includes its own logo + headline + features,
   so we don't impose aspect-ratio/object-fit cover on it.
   ========================================================= */
.faq-visual-graphic {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #F5F3FC, #EFEBF9) !important;
  box-shadow: 0 20px 40px -20px rgba(46, 42, 142, .25), 0 0 0 1px rgba(139, 124, 216, .15) !important;
  padding: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-visual-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  border-radius: var(--r-lg);
}

.whatsapp-icon .btn-whatsapp-pulse {
  z-index: 111;
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 30px;
  left: 50px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.whatsapp-icon .btn-whatsapp-puls:hover {
  color: #ffff;
}

.whatsapp-icon .btn-whatsapp-pulse svg {
  width: 40px;
  height: 40px;
}

.hero-doctor img {
  display: none;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  .cta-strip {
    padding: 0;
  }

  .cta-strip-inner::after {
    display: none;
  }

  .cta-strip-inner::before {
    display: none;
  }

  .cta-strip-inner {
    padding: 20px 20px 0 20px;
  }

  .cta-strip-ctas {
    position: initial;
    justify-content: center;
    display: flex;
    margin: auto;
  }

  .cta-strip .eyebrow {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .cta-strip h2 {
    text-align: center;
  }

  .cta-strip-inner>div {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .btn-accent {
    margin: 15px 0;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero {
    padding: 40px 10px;
    background: #4a42d626 !important;
  }

  .section-title br {
    display: none;
  }

  .clinic-features li {
    padding: .85rem 7px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-doctor {
    min-height: 100%;
  }

  .hero-doctor img {
    width: 210px;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
  }

  .hero-title {
    font-size: 32px;
    margin-top: 10px;
    line-height: 40px;
  }

  .hero-badge .hb-ico {
    display: none;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-features {
    margin-top: 10px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hf-item {
    min-width: calc(50% - .5rem);
    background: #ffffff;
    border-radius: 10px;
  }

  .about-ctas {
    margin-top: 10px;
    gap: 0px;
  }

  .about-ctas a {
    width: 100%;
  }

  .about-visual-chip {
    display: none;
  }

  .about-doc {
    padding-bottom: 70px;
  }

  .collab-layout {
    margin-top: 20px;
  }

  .collab-card {
    border-radius: 10px;
  }

  .swiper-horizontal {
    margin-top: 20px !important;
  }

  .cond-card {
    display: block;
  }

  .cond-card .c-thumb {
    margin-bottom: 10px;
  }

  .ip-content h2 br {
    display: none;
  }

  .about-visual-inner {
    aspect-ratio: 4 / 4.7;
  }

  .ip-content h2 {
    font-size: 26px;
  }

  .reviews-header {
    margin-bottom: 20px;
  }

  .contact-map {
    aspect-ratio: 15 / 10;
  }

  .booking-form {
    padding: 15px;
  }
}