/* ============================================
   ELEMENTOR NEUTRALIZATION — MUST BE AT TOP
   Prevents Elementor from overriding our custom layout
   ============================================ */

/* Neutralize Elementor Defaults for Pixel-Perfect Layout */
.elementor-section.elementor-section-boxed>.elementor-container {
  max-width: 100%;
}

.elementor-widget-html,
.elementor-widget-html .elementor-widget-container,
.elementor-widget-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.elementor-column-gap-no .elementor-column>.elementor-element-populated,
.elementor-column>.elementor-widget-wrap {
  padding: 0;
}

.elementor-element {
  margin-bottom: 0;
}

.elementor-section,
.elementor-container,
.elementor-column,
.elementor-column-wrap,
.elementor-widget-wrap,
.elementor-widget,
.elementor-widget-container {
  max-width: 100%;
  width: 100%;
}

/* Ensure template sections are not affected by Elementor layout rules */
/*.elementor-widget-html section {*/
/*  width: 100vw;*/
/*  position: relative;*/
/*  left: 50%;*/
/*  right: 50%;*/
/*  margin-left: -50vw;*/
/*  margin-right: -50vw;*/
/*}*/

/* Reset Elementor's default gap and padding on sections */
.elementor-section {
  padding: 0;
}

.elementor-section .elementor-container {
  padding: 0;
  margin: 0;
}

/* ============================================
   CSS EXTRACTED FROM ALL HTML TEMPLATE FILES
   ============================================ */

/* --- From: 1-allied-medical-updated --- */
/* ─── TOKENS ─── */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #8b5580;
  --gold2: #a87ba6;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif;
  --amc-v2-gradient: linear-gradient(135deg, #8E5784 0%, #603570 100%);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

a,
button {
  cursor: none
}

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

/* ─── CURSOR ─── */
.cur {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--sky2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(139, 85, 128, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, border-color .22s
}

.cur-ring.on {
  width: 54px;
  height: 54px;
  border-color: var(--gold)
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 12.5px;
  letter-spacing: .04em
}

.tb-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.tb-left {
  display: flex;
  gap: 28px;
  align-items: center
}

.tb-left a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
  font-weight: 300
}

.tb-left a:hover {
  color: var(--gold2)
}

.tb-left svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0
}

.tb-sep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, .14)
}

.tb-right {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em
}

/* ─── NAV ─── */
nav {
  position: fixed;
  /*top: 38px;*/
  left: 0;
  right: 0;
  z-index: 900;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .06)
}

nav.sc {
  top: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .08)
}

.nav-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none
}

.logo-m {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s
}

nav.sc .logo-m {
  background: var(--surface);
  border-color: var(--border)
}

.logo-m svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.5;
  transition: stroke .3s
}

nav.sc .logo-m svg {
  stroke: var(--sky)
}

.logo-txt {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.logo-name {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  transition: color .3s;
  line-height: 1.1
}

nav.sc .logo-name {
  color: var(--navy)
}

.logo-sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s
}

nav.sc .logo-sub {
  color: var(--muted)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-links a,
.nav-links button {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mid);
  background: none;
  border: none;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: none;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  letter-spacing: .005em
}

nav.sc .nav-links a,
nav.sc .nav-links button {
  color: var(--mid)
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--navy);
  background: var(--surface)
}

nav.sc .nav-links a:hover,
nav.sc .nav-links button:hover {
  color: var(--navy);
  background: var(--surface)
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 9px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  margin-left: 6px;
  border: 1px solid var(--navy)
}

nav.sc .nav-cta {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.nav-cta:hover {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 6px 20px rgba(139, 85, 128, .25)
}

nav.sc .nav-cta:hover {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 6px 20px rgba(139, 85, 128, .25)
}

.drop {
  position: relative
}

.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 7px;
  min-width: 230px;
  box-shadow: 0 20px 56px rgba(10, 28, 53, .12);
  opacity: 0;
  pointer-events: none;
  transition: all .26s cubic-bezier(.22, 1, .36, 1)
}

.drop:hover .drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0)
}

.drop-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--mid);
  text-decoration: none;
  font-weight: 300;
  transition: all .17s
}

.drop-menu a:hover {
  background: var(--surface);
  color: var(--navy);
  padding-left: 18px
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

/* HERO IMAGE */
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1600&q=80&fit=crop&crop=center') center/cover no-repeat;
}

/* Gradient overlay — dark at bottom, medium in center, lighter at top-right for text area */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(74, 47, 86, .88) 0%,
      rgba(89, 59, 103, .72) 45%,
      rgba(139, 85, 128, .45) 75%,
      rgba(157, 101, 146, .25) 100%),
    linear-gradient(to top, rgba(74, 47, 86, .5) 0%, transparent 55%);
}

.hero-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 56px 90px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* PILL */
.h-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}

.pill-dot {
  width: 7px;
  height: 7px;
  background: var(--aqua);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.h-pill span {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-alt)
}

/* HERO TITLE — big, white, sharp */
.h-title {
  font-family: var(--font);
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 700;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 10px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, .18);
}

.h-title .hi {
  font-family: var(--font-alt);
  font-weight: 200;
  font-style: italic;
  color: var(--gold2);
  display: block;
  font-size: .88em;
  letter-spacing: .01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.h-sub {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 22px;
  letter-spacing: .02em;
}

.h-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255, 255, 255, .75);
  max-width: 500px;
  margin-bottom: 40px;
}

.h-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 54px
}

/* HERO STAT STRIP */
.h-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hstat {
  padding: 20px 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  transition: background .25s
}

.hstat:last-child {
  border-right: none
}

.hstat:hover {
  background: rgba(255, 255, 255, .08)
}

.hstat-n {
  font-family: var(--font);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px
}

.hstat-n sup {
  font-size: 16px;
  font-weight: 500;
  color: var(--aqua);
  vertical-align: super
}

.hstat-l {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55)
}

/* HERO RIGHT — feature cards on image */
.h-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative
}

.h-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--sky);
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  box-shadow: 0 8px 22px rgba(139, 85, 128, .35);
  z-index: 2;
}

.hcard {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: all .35s;
  backdrop-filter: blur(14px);
}

.hcard:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .15)
}

.hcard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.hcard-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.hcard-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.5
}

.hcard h3 {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px
}

.hcard p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .68);
  line-height: 1.6
}

/* scroll hint */
.h-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: .5
}

.h-scroll span {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

.scroll-wire {
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(255, 255, 255, .6), transparent);
  animation: wire 2s ease-in-out infinite
}

@keyframes wire {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ─── BUTTONS ─── */
/*.btn-fill {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 9px;*/
/*  background: #fff;*/
/*  color: var(--navy);*/
/*  padding: 14px 28px;*/
/*  border-radius: 10px;*/
/*  font-family: var(--font);*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  letter-spacing: .02em;*/
/*  text-decoration: none;*/
/*  transition: all .28s;*/
/*  border: 1.5px solid rgba(255, 255, 255, .9)*/
/*}*/

/*.btn-fill:hover {*/
/*  background: var(--sky2);*/
/*  color: #fff;*/
/*  border-color: var(--sky2);*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 12px 32px rgba(157, 101, 146, .3)*/
/*}*/

/*.btn-fill svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  stroke: currentColor;*/
/*  fill: none;*/
/*  stroke-width: 1.5*/
/*}*/

/*.btn-ghost {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 9px;*/
/*  background: transparent;*/
/*  color: #fff;*/
/*  padding: 14px 28px;*/
/*  border-radius: 10px;*/
/*  font-family: var(--font);*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  letter-spacing: .02em;*/
/*  text-decoration: none;*/
/*  border: 1.5px solid rgba(255, 255, 255, .35);*/
/*  transition: all .28s*/
/*}*/

/*.btn-ghost:hover {*/
/*  background: rgba(255, 255, 255, .12);*/
/*  border-color: rgba(255, 255, 255, .6);*/
/*  transform: translateY(-2px)*/
/*}*/

/*.btn-ghost svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  stroke: currentColor;*/
/*  fill: none;*/
/*  stroke-width: 1.5*/
/*}*/

/* dark bg button variants */
/*.btn-d-fill {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 9px;*/
/*  background: var(--navy);*/
/*  color: #fff;*/
/*  padding: 14px 28px;*/
/*  border-radius: 10px;*/
/*  font-family: var(--font);*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  letter-spacing: .02em;*/
/*  text-decoration: none;*/
/*  transition: all .28s;*/
/*  border: 1.5px solid var(--navy)*/
/*}*/

/*.btn-d-fill:hover {*/
/*  background: var(--sky);*/
/*  border-color: var(--sky);*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 12px 32px rgba(139, 85, 128, .25)*/
/*}*/

/*.btn-d-fill svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  stroke: currentColor;*/
/*  fill: none;*/
/*  stroke-width: 1.5*/
/*}*/

/*.btn-d-ghost {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 9px;*/
/*  background: transparent;*/
/*  color: var(--mid);*/
/*  padding: 14px 28px;*/
/*  border-radius: 10px;*/
/*  font-family: var(--font);*/
/*  font-size: 14px;*/
/*  font-weight: 400;*/
/*  letter-spacing: .02em;*/
/*  text-decoration: none;*/
/*  border: 1.5px solid var(--border);*/
/*  transition: all .28s*/
/*}*/

/*.btn-d-ghost:hover {*/
/*  border-color: var(--sky);*/
/*  color: var(--sky);*/
/*  transform: translateY(-2px)*/
/*}*/

/*.btn-d-ghost svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  stroke: currentColor;*/
/*  fill: none;*/
/*  stroke-width: 1.5*/
/*}*/

/*.btn-sm-f {*/
/*  font-family: var(--font);*/
/*  font-size: 13px;*/
/*  font-weight: 600;*/
/*  padding: 10px 20px;*/
/*  border-radius: 9px;*/
/*  text-decoration: none;*/
/*  transition: all .22s;*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 6px;*/
/*  letter-spacing: .02em;*/
/*  cursor: none;*/
/*  background: var(--navy);*/
/*  color: #fff;*/
/*  border: 1.5px solid var(--navy)*/
/*}*/

/*.btn-sm-f:hover {*/
/*  background: var(--sky);*/
/*  border-color: var(--sky);*/
/*  box-shadow: 0 6px 18px rgba(139, 85, 128, .2)*/
/*}*/

/*.btn-sm-o {*/
/*  font-family: var(--font);*/
/*  font-size: 13px;*/
/*  font-weight: 500;*/
/*  padding: 10px 20px;*/
/*  border-radius: 9px;*/
/*  text-decoration: none;*/
/*  transition: all .22s;*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 6px;*/
/*  letter-spacing: .02em;*/
/*  cursor: none;*/
/*  background: transparent;*/
/*  color: var(--mid);*/
/*  border: 1.5px solid var(--border)*/
/*}*/

/*.btn-sm-o:hover {*/
/*  border-color: var(--navy);*/
/*  color: var(--navy)*/
/*}*/

/* ─── QUICK ACCESS ─── */
.quick {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.q-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.qi {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .25s;
  cursor: none
}

.qi:last-child {
  border-right: none
}

.qi:hover {
  background: var(--surface)
}

.qi-ico {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(30, 82, 140, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .28s
}

.qi:hover .qi-ico {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 10px 24px rgba(89, 59, 103, .15)
}

.qi-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .28s
}

.qi:hover .qi-ico svg {
  stroke: #fff
}

.qi-t h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px
}

.qi-t p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5
}

.qi-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  transition: gap .2s, color .2s;
  letter-spacing: .02em
}

.qi:hover .qi-link {
  gap: 8px;
  color: var(--sky2)
}

.qi-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

/* ─── SHARED SECTION ─── */
section {
  padding: 100px 0
}

section.hero-slider {
  padding: 0
}

.quick {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 0
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px
}

.tag-line {
  width: 30px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px
}

.tag span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold)
}

.sec-title {
  font-family: var(--font);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.03em
}

.sec-title .hl {
  color: var(--sky)
}

.sec-title .hi {
  font-family: var(--font-alt);
  font-weight: 200;
  font-style: italic;
  color: var(--gold)
}

.sec-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mid);
  margin-top: 16px
}

/* ─── ABOUT ─── */
.about {
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center
}

.about-vis {
  position: relative
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0, #c09abc);
  position: relative;
  box-shadow: 0 32px 80px rgba(89, 59, 103, .1);
}

.about-img-pat {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .2) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5
}

.about-img-ctr {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px;
  text-align: center
}

.about-img-h {
  font-family: var(--font);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 10px
}

.about-img-h span {
  font-weight: 200;
  color: var(--sky);
  display: block
}

.about-img-s {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500
}

.about-float {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 14px 44px rgba(10, 28, 53, .12);
  border: 1px solid var(--border);
  text-align: center
}

.about-float-n {
  font-family: var(--font);
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.04em
}

.about-float-l {
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 400
}

.about-corner {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(139, 85, 128, .28)
}

.about-corner svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.4
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px
}

.afeat {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .28s;
  cursor: default
}

.afeat:hover {
  border-color: var(--aqua);
  box-shadow: 0 8px 28px rgba(139, 85, 128, .09);
  transform: translateY(-2px)
}

.afeat-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px
}

.afeat-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.afeat h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px
}

.afeat p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.58
}

/* ─── STATS ─── */
.stats-band {
  background: linear-gradient(135deg, #f8f3f7 0%, #f0e6ef 50%, #f8f3f7 100%);
  border-top: 1px solid rgba(89, 59, 103, .07);
  border-bottom: 1px solid rgba(89, 59, 103, .07)
}

.stats-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(89, 59, 103, .07)
}

.si {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid rgba(89, 59, 103, .07);
  cursor: default;
  transition: background .25s
}

.si:hover {
  background: rgba(255, 255, 255, .8)
}

.si-n {
  font-family: var(--font);
  font-size: 58px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 7px;
  letter-spacing: -.045em
}

.si-n sup {
  font-size: 22px;
  font-weight: 600;
  color: var(--sky);
  vertical-align: super
}

.si-n em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-alt);
  font-weight: 200
}

.si-l {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

/* ─── DEPARTMENTS ─── */
.depts {
  background: var(--surface)
}

.depts-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 36px rgba(10, 28, 53, .05)
}

.dc {
  background: #fff;
  padding: 34px 28px;
  cursor: none;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block
}

.dc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--mist));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s
}

.dc:hover::after {
  transform: scaleX(1)
}

.dc:hover {
  background: #4a2f56;
  z-index: 1;
  box-shadow: 0 22px 56px rgba(89, 59, 103, .18)
}

.dc-num {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 22px;
  display: block;
  font-weight: 500;
  transition: color .3s
}

.dc:hover .dc-num {
  color: rgba(255, 255, 255, .3)
}

.dc-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s
}

.dc-ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s
}

.dc:hover .dc-ico {
  background: rgba(255, 255, 255, .1)
}

.dc:hover .dc-ico svg {
  stroke: var(--aqua)
}

.dc h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.32;
  transition: color .3s
}

.dc:hover h3 {
  color: #fff
}

.dc p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  transition: color .3s
}

.dc:hover p {
  color: rgba(255, 255, 255, .55)
}

.dc-arr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: all .3s
}

.dc:hover .dc-arr {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2)
}

.dc-arr svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  transition: all .3s
}

.dc:hover .dc-arr svg {
  stroke: #fff;
  transform: translate(2px, -2px)
}


/* ─── TESTIMONIALS ─── */
.testi {
  background: var(--surface)
}

.testi-head {
  text-align: center;
  margin-bottom: 56px
}

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

.tc {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid var(--border);
  position: relative;
  transition: all .35s;
  cursor: default
}

.tc:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(10, 28, 53, .09)
}

.tc-qm {
  font-family: var(--font-alt);
  font-size: 72px;
  font-weight: 100;
  line-height: .65;
  color: var(--aqua);
  opacity: .45;
  position: absolute;
  top: 26px;
  right: 30px
}

.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px
}

.tc-star {
  width: 14px;
  height: 14px;
  fill: var(--sky)
}

.tc-text {
  font-family: var(--font-alt);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 24px
}

.tc-div {
  width: 40px;
  height: 1.5px;
  background: var(--border);
  margin-bottom: 20px;
  border-radius: 2px
}

.tc-auth {
  display: flex;
  align-items: center;
  gap: 13px
}

.tc-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mist), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tc-av span {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 600;
  color: #fff
}

.tc-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy)
}

.tc-role {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 2px
}

.tc-svc {
  font-size: 11px;
  font-weight: 500;
  background: var(--surface);
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 6px;
  letter-spacing: .04em
}

/* ─── INSURANCE ─── */
.insure {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border)
}

.ins-head {
  text-align: center;
  margin-bottom: 44px
}

.ins-track {
  overflow: hidden;
  position: relative
}

.ins-track::before,
.ins-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none
}

.ins-track::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent)
}

.ins-track::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent)
}

.ins-row {
  display: flex;
  gap: 16px;
  animation: scrollins 32s linear infinite;
  width: max-content
}

.ins-row:hover {
  animation-play-state: paused
}

@keyframes scrollins {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ins-item {
  height: 52px;
  padding: 12px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mid);
  white-space: nowrap;
  min-width: 130px;
  flex-shrink: 0;
  transition: all .25s
}

.ins-item:hover {
  border-color: var(--sky);
  color: var(--navy);
  box-shadow: 0 5px 16px rgba(139, 85, 128, .1)
}

/* ─── APPOINTMENT ─── */
.appt {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 100px 0
}

.appt-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center
}

.appt-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 38px
}

.ac-item {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.ac-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(30, 126, 207, .07);
  display: flex;
  align-items: center;
  justify-content: center
}

.ac-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.ac-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy)
}

.ac-text p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 2px;
  line-height: 1.55
}

.appt-form {
  background: var(--surface);
  border-radius: 20px;
  padding: 42px;
  box-shadow: 0 20px 64px rgba(10, 28, 53, .07);
  border: 1px solid var(--border)
}

.appt-form h3 {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: -.025em
}

.appt-form>p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px
}

.fg {
  margin-bottom: 20px
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all .22s;
  -webkit-appearance: none
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(139, 85, 128, .1)
}

textarea {
  height: 96px;
  resize: none;
  line-height: 1.65
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23a87faa' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  cursor: none;
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px
}

.btn-submit:hover {
  background: var(--sky);
  box-shadow: 0 12px 32px rgba(139, 85, 128, .25);
  transform: translateY(-1px)
}

.btn-submit svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

/* ─── BLOG ─── */
.blog {
  background: var(--surface)
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px
}

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

.bc {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .38s;
  cursor: none
}

.bc:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(10, 28, 53, .1);
  border-color: transparent
}

.bc-img {
  height: 210px;
  position: relative;
  overflow: hidden
}

.bc-bg {
  position: absolute;
  inset: 0;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.bc:hover .bc-bg {
  transform: scale(1.06)
}

.bc-bg-1 {
  background: linear-gradient(150deg, #e0c8dd, #c8a0c0, #a87aaa)
}

.bc-bg-2 {
  background: linear-gradient(150deg, #d4b8d0, #b898b4, #9878a0)
}

.bc-bg-3 {
  background: linear-gradient(150deg, #e8d0e5, #d0b0cc, #b890b8)
}

.bc-ico {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .2
}

.bc-ico svg {
  width: 60px;
  height: 60px;
  stroke: #fff;
  fill: none;
  stroke-width: .7
}

.bc-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  font-size: 10.5px;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600
}

.bc-body {
  padding: 26px
}

.bc-meta {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 11px
}

.bc-dot {
  width: 3px;
  height: 3px;
  background: var(--muted);
  border-radius: 50%;
  flex-shrink: 0
}

.bc-body h3 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.38;
  margin-bottom: 12px;
  letter-spacing: -.02em
}

.bc-body p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px
}

.bc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap .2s, color .2s
}

.bc-link:hover {
  gap: 10px;
  color: var(--sky2)
}

.bc-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

/* ─── FOOTER ─── */
footer {
    background: var(--amc-v2-gradient) !important;
  padding: 84px 0 38px
}

.foot-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px
}

.foot-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.7fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.foot-brand p {
  font-size: 14px;
  font-weight: 300;
  color: white;
  line-height: 1.82;
  margin-top: 20px;
  max-width: 260px
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 13px
}

.foot-logo-m {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center
}

.foot-logo-m svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255, 255, 255, .65);
  stroke-width: 1.5
}

.foot-logo-n {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: -.02em
}

.foot-sub {
  margin-top: 26px;
  display: flex;
  gap: 9px
}

.foot-sub input {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #fff;
  font-size: 13.5px;
  padding: 11px 15px;
  flex: 1;
  font-family: var(--font);
  font-weight: 300
}

.foot-sub input::placeholder {
  color: rgba(255, 255, 255, .28)
}

.foot-sub input:focus {
  border-color: rgba(201, 168, 196, .4);
  outline: none
}

.foot-sub button {
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 18px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  white-space: nowrap;
  transition: all .25s
}

.foot-sub button:hover {
  background: var(--sky2)
}

.foot-col h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 20px;
  letter-spacing: -.01em
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.foot-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .44);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px
}

.foot-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity .2s
}

.foot-links a:hover {
  color: rgba(255, 255, 255, .85)
}

.foot-links a:hover::before {
  opacity: 1
}

.foot-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.fci-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.fci-ico svg {
  width: 14px;
  height: 14px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.5
}

.fci-txt strong {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  display: block
}

.fci-txt p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .4);
  line-height: 1.55
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 14px
}

.foot-copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .32)
}

.foot-moh {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  margin-top: 5px;
  letter-spacing: .05em
}

.foot-bot-links {
  display: flex;
  gap: 22px
}

.foot-bot-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .32);
  text-decoration: none;
  transition: color .2s
}

.foot-bot-links a:hover {
  color: rgba(255, 255, 255, .75)
}

/* ─── HERO SLIDER ─── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0
}

.hs-track {
  display: flex;
  height: 100%;
  transition: transform .8s cubic-bezier(.77, 0, .175, 1)
}

.hs-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0
}

.hs-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.hs-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(74, 47, 86, .90) 0%, rgba(89, 59, 103, .70) 45%, rgba(139, 85, 128, .40) 80%, rgba(157, 101, 146, .18) 100%), linear-gradient(to top, rgba(74, 47, 86, .55) 0%, transparent 55%)
}

.hs-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 140px 100px 100px;
  max-width: 860px
}

.hs-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 100px;
  padding: 7px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px)
}

.hs-label-dot {
  width: 7px;
  height: 7px;
  background: var(--aqua);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0
}

.hs-label span {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-alt)
}

.hs-title {
  font-family: var(--font);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, .18)
}

.hs-title em {
  font-family: var(--font-alt);
  font-weight: 200;
  font-style: italic;
  color: var(--aqua);
  display: block;
  font-size: .82em
}

.hs-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255, 255, 255, .78);
  max-width: 580px;
  margin: 0 0 40px
}

.hs-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start
}

.hs-btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--sky);
  color: #fff;
  padding: 15px 32px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border: 2px solid var(--sky);
  transition: all .28s;
  cursor: none
}

.hs-btn-fill:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(89, 59, 103, .35)
}

.hs-btn-fill svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.hs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  padding: 15px 32px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  border: 2px solid rgba(201, 168, 196, .5);
  transition: all .28s;
  cursor: none;
  backdrop-filter: blur(4px)
}

.hs-btn-outline:hover {
  background: rgba(201, 168, 196, .12);
  border-color: rgba(201, 168, 196, .85);
  transform: translateY(-2px)
}

.hs-btn-outline svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all .25s;
  backdrop-filter: blur(8px)
}

.hs-arrow:hover {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 8px 24px rgba(139, 85, 128, .3)
}

.hs-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.hs-prev {
  left: 32px
}

.hs-next {
  right: 32px
}

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: none;
  cursor: none;
  transition: all .3s;
  padding: 0
}

.hs-dot.act {
  width: 28px;
  border-radius: 4px;
  background: var(--sky)
}

/* Progress bar */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--mist));
  z-index: 11;
  transition: width .1s linear
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

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

.rv.d1 {
  transition-delay: .09s
}

.rv.d2 {
  transition-delay: .18s
}

.rv.d3 {
  transition-delay: .27s
}

.rv.d4 {
  transition-delay: .36s
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

.a1 {
  animation: fadeUp .75s ease .25s both
}

.a2 {
  animation: fadeUp .75s ease .4s both
}

.a3 {
  animation: fadeUp .75s ease .5s both
}

.a4 {
  animation: fadeUp .75s ease .6s both
}

.a5 {
  animation: fadeUp .75s ease .7s both
}

.a6 {
  animation: fadeUp .75s ease .8s both
}

.a7 {
  animation: fadeUp .75s ease .9s both
}

/* --- From: 10-dr-rami-neemtallah --- */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #8b5580;
  --gold2: #a87ba6;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  cursor: none
}

a,
button {
  cursor: none
}

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

.cur {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--sky2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%)
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(139, 85, 128, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, border-color .22s
}

.cur-ring.on {
  width: 54px;
  height: 54px;
  border-color: var(--gold)
}

.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 12.5px
}

.tb-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.tb-left {
  display: flex;
  gap: 28px;
  align-items: center
}

.tb-left a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
  font-weight: 300
}

.tb-left a:hover {
  color: var(--aqua)
}

.tb-left svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.tb-sep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, .14)
}

.tb-right {
  font-size: 12px;
  color: rgba(255, 255, 255, .45)
}

nav {
  position: fixed;
  /*top: 38px;*/
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .06);
  transition: all .4s
}


.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none
}

.logo-m {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-m svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.5
}

.logo-txt {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.logo-name {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1
}

.logo-sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted)
}

.nav-links {
  display: flex;
  gap: 2px
}

.nav-links a {
  font-size: 13.5px;
  color: var(--mid);
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--surface)
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 9px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  margin-left: 6px
}

.nav-cta:hover {
  background: var(--sky);
  box-shadow: 0 6px 20px rgba(139, 85, 128, .25)
}

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2))
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 85, 128, .2), transparent 50%)
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 180px 56px 80px;
  text-align: center
}

.ph-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px)
}

.ph-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.5
}

.ph-pill span {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, .85)
}

.ph-title {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 12px
}

.ph-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 660px;
  margin: 0 auto 36px
}

.ph-btn {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: #fff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid #fff
}

.ph-btn:hover {
  background: var(--sky2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(157, 101, 146, .3)
}

.ph-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.ph-btn-wa {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid #25D366
}

.ph-btn-wa:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .3)
}

.ph-btn-wa svg {
  width: 17px;
  height: 17px;
  fill: #fff;
  flex-shrink: 0
}

.ph-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center
}

/*.profile {*/
/*  padding: 100px 0;*/
/*  background: #fff*/
/*}*/

/*.prof-in {*/
/*  max-width: 1300px;*/
/*  margin: 0 auto;*/
/*  padding: 0 56px;*/
/*  display: grid;*/
/*  grid-template-columns: .9fr 2.1fr;*/
/*  gap: 50px*/
/*}*/

/*.sidebar {*/
/*  position: sticky;*/
/*  top: 140px;*/
/*  align-self: start*/
/*}*/

/*.doc-card {*/
/*  background: var(--surface);*/
/*  border: 1px solid var(--border);*/
/*  border-radius: 20px;*/
/*  padding: 32px;*/
/*  text-align: center*/
/*}*/

/*.doc-photo {*/
/*  width: 150px;*/
/*  height: 150px;*/
/*  margin: 0 auto 20px;*/
/*  border-radius: 50%;*/
/*  overflow: hidden;*/
/*  border: 3px solid #fff;*/
/*  box-shadow: 0 8px 24px rgba(89, 59, 103, .12);*/
/*  background: linear-gradient(150deg, #e8d4e5, #d4b8d0, #c09abc);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center*/
/*}*/

/*.doc-photo img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  object-position: top center*/
/*}*/

/*.doc-photo svg {*/
/*  width: 70px;*/
/*  height: 70px;*/
/*  stroke: rgba(89, 59, 103, .35);*/
/*  fill: none;*/
/*  stroke-width: .85;*/
/*  display: none*/
/*}*/

/*.doc-rating {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: 8px;*/
/*  margin-bottom: 20px*/
/*}*/

/*.doc-rating-num {*/
/*  font-size: 28px;*/
/*  font-weight: 700;*/
/*  color: var(--navy)*/
/*}*/

/*.doc-rating-stars {*/
/*  display: flex;*/
/*  gap: 3px*/
/*}*/

/*.doc-rating-stars svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  fill: var(--gold)*/
/*}*/

/*.doc-rating-text {*/
/*  font-size: 12px;*/
/*  color: var(--muted);*/
/*  margin-top: 4px*/
/*}*/

/*.doc-acts {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 10px;*/
/*  margin-bottom: 28px*/
/*}*/

.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all .28s;
  border: none;
  display: block
}

.btn-primary:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px)
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

/*.doc-info-list {*/
/*  list-style: none;*/
/*  text-align: left;*/
/*  border-top: 1px solid var(--border);*/
/*  padding-top: 24px*/
/*}*/

/*.doc-info-list li {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: 12px;*/
/*  margin-bottom: 16px;*/
/*  font-size: 14px*/
/*}*/

/*.doc-info-list svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  stroke: var(--sky);*/
/*  fill: none;*/
/*  stroke-width: 1.5;*/
/*  flex-shrink: 0;*/
/*  margin-top: 2px*/
/*}*/

/*.doc-info-list strong {*/
/*  display: block;*/
/*  font-weight: 600;*/
/*  color: var(--navy);*/
/*  margin-bottom: 2px*/
/*}*/

/*.doc-info-list span {*/
/*  color: var(--mid);*/
/*  font-weight: 300;*/
/*  font-size: 13.5px*/
/*}*/

.insurance-logos {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border)
}

.insurance-logos h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: left
}

.ins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.ins-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  min-height: 40px;
  text-align: center
}

.main-content {
  background: #fff
}

.tag {
  display: inline-flex;
  gap: 9px;
  margin-bottom: 16px
}

.tag-line {
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px
}

.tag span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold)
}

.sec-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.sec-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mid)
}

.about-sec {
  margin-bottom: 60px
}

.clinical-int {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px
}

.clinical-list {
  list-style: none
}

.clinical-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  color: var(--mid)
}

.clinical-list li:last-child {
  border-bottom: none
}

.clinical-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

.edu-list {
  list-style: none
}

.edu-item {
  padding: 20px;
  background: var(--surface);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border)
}

.edu-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.edu-item p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 60px 0
}

.stat-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #fff
}

.stat-card h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.03em
}

.stat-card p {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75)
}

.expertise {
  background: var(--surface);
  padding: 60px 0;
  margin: 60px -56px;
  width: calc(100% + 112px)
}

.expertise-in {
  max-width: 100%;
  padding: 0 56px
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px
}

.exp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .3s
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.exp-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.exp-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

.care-stages {
  margin: 60px 0
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px
}

.stage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s
}

.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.stage-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.stage-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.stage-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.stage-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7
}

.cta-banner {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  padding: 80px 56px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0
}

.cta-banner h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2
}

.cta-banner p {
  font-family: var(--font-alt);
  font-size: 17px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .85);
  max-width: 700px;
  margin: 0 auto
}

.appt {
  background: var(--surface);
  padding: 80px 0;
  margin: 60px -56px;
  width: calc(100% + 112px)
}

.appt-in {
  max-width: 100%;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px
}

.appt-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 38px
}

.ac-item {
  display: flex;
  gap: 16px
}

.ac-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(139, 85, 128, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ac-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.ac-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy)
}

.ac-text p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 2px
}

.appt-form {
  background: #fff;
  border-radius: 20px;
  padding: 42px;
  box-shadow: 0 20px 64px rgba(89, 59, 103, .07);
  border: 1px solid var(--border)
}

.appt-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

.appt-form>p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px
}

.fg {
  margin-bottom: 20px
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all .22s;
  font-family: var(--font)
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(139, 85, 128, .1)
}

textarea {
  height: 96px;
  resize: none
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: none;
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font)
}

.btn-submit:hover {
  background: var(--sky);
  transform: translateY(-1px)
}

.btn-submit svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.faqs {
  margin-top: 60px
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all .3s
}

.faq-item:hover {
  border-color: var(--sky);
  box-shadow: 0 8px 24px rgba(89, 59, 103, .06)
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  gap: 10px
}

.faq-q::before {
  content: 'Q';
  width: 28px;
  height: 28px;
  background: var(--sky);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0
}

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  padding-left: 38px
}


.foot-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px
}

.foot-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.7fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}


.foot-logo {
  display: flex;
  gap: 13px;
  align-items: center
}

.foot-logo-m {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.foot-logo-m svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255, 255, 255, .65);
  stroke-width: 1.5
}

.foot-logo-n {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85)
}

.foot-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 20px
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.foot-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .44);
  text-decoration: none;
  transition: color .2s
}

.foot-links a:hover {
  color: rgba(255, 255, 255, .85)
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 30px
}

.foot-copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .32)
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s
}

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

.rv.d1 {
  transition-delay: .09s
}

.rv.d2 {
  transition-delay: .18s
}

.rv.d3 {
  transition-delay: .27s
}

/* --- From: 11-dr-vikas-singhal --- */
.ph-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 680px;
  margin: 0 auto 36px
}

/* --- From: 12-dr-shweta-agarwal --- */
.ph-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  margin: 0 auto 36px
}

/* --- From: 14-signature-health-screening-purple --- */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #c4a06e;
  --gold2: #d9b98e;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif;
}

.tb-left a:hover {
  color: var(--gold2)
}

.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  overflow: hidden
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: radial-gradient(circle, var(--mist) 1px, transparent 1px);
  background-size: 30px 30px
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 200px 56px 120px;
  text-align: center
}

.ph-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px)
}

.ph-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 20px
}

.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  max-width: 800px;
  margin: 0 auto 44px;
  line-height: 1.7
}

.ph-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center
}

.ph-btn {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 15px 32px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid
}

.ph-btn-primary {
  background: #fff;
  color: var(--navy);
  border-color: #fff
}

.ph-btn-primary:hover {
  background: var(--sky2);
  color: #fff;
  border-color: var(--sky2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(157, 101, 146, .3)
}

.ph-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .3)
}

.ph-btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5)
}

.stats-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0
}

.stats-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px
}

.stat-item {
  text-align: center
}

.stat-num {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em
}

.stat-num .highlight {
  color: var(--sky)
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em
}

section {
  padding: 100px 0
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px
}

.sec-title {
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.03em
}

.sec-title .hl {
  color: var(--sky)
}

.sec-title .hi {
  font-family: var(--font-alt);
  font-weight: 200;
  font-style: italic;
  color: var(--gold)
}

.sec-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mid);
  margin-top: 16px
}

.why {
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.why-feature {
  display: flex;
  gap: 20px
}

.why-ico {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.why-ico svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.why-feature h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.why-feature p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.why-visual {
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  border-radius: 24px;
  min-height: 500px;
  position: relative;
  overflow: hidden
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.why-stat {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(89, 59, 103, .15)
}

.why-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px
}

.why-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy)
}

.experience {
  background: var(--surface);
  padding: 120px 0
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.exp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px 32px;
  transition: all .3s
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1)
}

.exp-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.exp-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.packages {
  background: #fff;
  padding: 120px 0
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px
}

.pkg-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s;
  position: relative
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(89, 59, 103, .12);
  border-color: var(--sky)
}

.pkg-featured {
  border-color: var(--gold);
  background: linear-gradient(to bottom, rgba(196, 160, 110, .03), #fff)
}

.pkg-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em
}

.pkg-img {
  height: 200px;
  background: linear-gradient(150deg, #e8d4e5, #d4b8d0, #c09abc);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.pkg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(89, 59, 103, .3))
}

.pkg-name {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .3)
}

.pkg-info {
  padding: 32px 28px
}

.pkg-audience {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500
}

.pkg-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1
}

.pkg-price span {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted)
}

.pkg-duration {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px
}

.pkg-features {
  list-style: none;
  margin-bottom: 28px
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--mid)
}

.pkg-features li:last-child {
  border-bottom: none
}

.pkg-features svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

.pkg-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all .28s;
  text-align: center;
  text-decoration: none;
  display: block
}

.pkg-btn:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.journey {
  background: var(--surface);
  padding: 120px 0
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 60px
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all .3s
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08)
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(139, 85, 128, .25)
}

.step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.step p {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

.testing {
  background: #fff;
  padding: 120px 0
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  transition: all .3s
}

.test-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.test-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.test-card p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.prep {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.prep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139, 85, 128, .12), transparent 60%)
}

.prep-in {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center
}

.prep-in h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px
}

.prep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left
}

.prep-item {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start
}

.prep-num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .3)
}

.prep-item p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .88);
  line-height: 1.7;
  padding-top: 6px
}

.comparison {
  background: var(--surface);
  padding: 120px 0
}

.comp-table {
  margin-top: 50px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border)
}

.comp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: var(--navy);
  color: #fff;
  padding: 24px 28px;
  font-weight: 600;
  font-size: 14px
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  align-items: center
}

.comp-row:last-child {
  border-bottom: none
}

.comp-row:hover {
  background: var(--surface)
}

.comp-feature {
  font-size: 14.5px;
  color: var(--mid);
  font-weight: 500
}

.comp-check {
  display: flex;
  justify-content: center
}

.comp-check svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2
}

.comp-cross {
  display: flex;
  justify-content: center
}

.comp-cross svg {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  opacity: .3
}

/*.doctors {*/
/*  background: #fff;*/
/*  padding: 120px 0*/
/*}*/

/*.doc-head {*/
/*  text-align: center;*/
/*  margin-bottom: 60px*/
/*}*/

/*.doc-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/
/*  gap: 24px*/
/*}*/

/*.doc-card {*/
/*  background: #fff;*/
/*  border: 1px solid var(--border);*/
/*  border-radius: 18px;*/
/*  overflow: hidden;*/
/*  transition: all .35s*/
/*}*/

/*.doc-card:hover {*/
/*  transform: translateY(-7px);*/
/*  box-shadow: 0 28px 70px rgba(89, 59, 103, .12);*/
/*  border-color: transparent*/
/*}*/

/*.doc-photo {*/
/*  height: 220px;*/
/*  background: linear-gradient(150deg, #e8d4e5, #d4b8d0, #c09abc);*/
/*  position: relative*/
/*}*/

/*.doc-ph-ctr {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center*/
/*}*/

/*.doc-av {*/
/*  width: 80px;*/
/*  height: 80px;*/
/*  border-radius: 50%;*/
/*  background: rgba(255, 255, 255, .3);*/
/*  border: 2px solid rgba(255, 255, 255, .5);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center*/
/*}*/

/*.doc-av svg {*/
/*  width: 42px;*/
/*  height: 42px;*/
/*  stroke: rgba(89, 59, 103, .35);*/
/*  fill: none;*/
/*  stroke-width: .85*/
/*}*/

/*.doc-badge {*/
/*  position: absolute;*/
/*  bottom: 14px;*/
/*  left: 16px;*/
/*  background: var(--sky);*/
/*  color: #fff;*/
/*  border-radius: 7px;*/
/*  padding: 4px 10px;*/
/*  font-size: 10px;*/
/*  font-weight: 600*/
/*}*/

/*.doc-rating {*/
/*  position: absolute;*/
/*  top: 14px;*/
/*  right: 16px;*/
/*  background: rgba(255, 255, 255, .95);*/
/*  padding: 4px 10px;*/
/*  border-radius: 6px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 4px;*/
/*  font-size: 12px;*/
/*  font-weight: 600;*/
/*  color: var(--navy)*/
/*}*/

/*.doc-rating svg {*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  fill: var(--gold)*/
/*}*/

/*.doc-info {*/
/*  padding: 20px 22px*/
/*}*/

/*.doc-info h3 {*/
/*  font-size: 16px;*/
/*  font-weight: 700;*/
/*  color: var(--navy);*/
/*  margin-bottom: 4px*/
/*}*/

/*.doc-spec {*/
/*  font-size: 12.5px;*/
/*  font-weight: 300;*/
/*  color: var(--muted);*/
/*  margin-bottom: 12px;*/
/*  line-height: 1.5*/
/*}*/

/*.doc-exp {*/
/*  font-size: 11.5px;*/
/*  color: var(--mid);*/
/*  font-weight: 500;*/
/*  margin-bottom: 14px*/
/*}*/

/*.doc-acts {*/
/*  display: flex;*/
/*  gap: 8px*/
/*}*/

.btn-sm {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: all .22s
}

.btn-sm-f {
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy)
}

.btn-sm-f:hover {
  background: var(--sky);
  border-color: var(--sky)
}

.btn-sm-o {
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--border)
}

.btn-sm-o:hover {
  border-color: var(--navy);
  color: var(--navy)
}

.testimonials {
  background: var(--surface);
  padding: 120px 0
}

.test-slider {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative
}

.test-card-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(89, 59, 103, .08)
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px
}

.test-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold)
}

.test-quote {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 28px;
  font-style: italic
}

.test-author {
  display: flex;
  gap: 16px;
  align-items: center
}

.test-author-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center
}

.test-author-av svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1
}

.test-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy)
}

.test-author-role {
  font-size: 13px;
  color: var(--muted)
}

.cta-banner {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .1), transparent 70%)
}

.cta-in {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 56px
}

.cta-in h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2
}

.cta-in p {
  font-family: var(--font-alt);
  font-size: 19px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 36px;
  line-height: 1.7
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center
}

.cta-btn {
  padding: 16px 36px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid
}

.cta-btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff
}

.cta-btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 160, 110, .35)
}

.cta-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

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

.cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.faqs {
  background: #fff;
  padding: 120px 0
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s
}

.faq-item:hover {
  border-color: var(--sky);
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  gap: 12px
}

.faq-q::before {
  content: 'Q';
  width: 32px;
  height: 32px;
  background: var(--sky);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0
}

.faq-a {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  padding-left: 44px
}

.foot-logo {
  display: flex;
  gap: 13px
}

.foot-logo-m {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center
}

.rv {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s, transform .7s
}

.rv.d1 {
  transition-delay: .09s
}

.rv.d2 {
  transition-delay: .18s
}

.rv.d3 {
  transition-delay: .27s
}

.rv.d4 {
  transition-delay: .36s
}

@media(max-width:1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pkg-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .journey-steps {
    grid-template-columns: repeat(3, 1fr)
  }

  /*.doc-grid {*/
  /*  grid-template-columns: repeat(2, 1fr)*/
  /*}*/
}

@media(max-width:768px) {

  .why-grid,
  .exp-grid,
  .test-grid,
  .journey-steps,
  .pkg-grid,
  .doc-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

  .comp-header,
  .comp-row {
    grid-template-columns: 1fr;
    font-size: 12px
  }
}

/* --- From: 15-general-family-medicine-purple --- */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  overflow: hidden
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 200px 56px 100px;
  text-align: center
}

.ph-title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 20px
}

.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7
}

section {
  padding: 120px 0
}

.intro {
  background: #fff
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.intro-visual {
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  border-radius: 24px;
  min-height: 500px;
  position: relative;
  overflow: hidden
}

.intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.intro-item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.intro-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.intro-item p {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.services {
  background: var(--surface)
}

.serv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px
}

.serv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all .35s
}

.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.serv-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.serv-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.serv-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.serv-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
  position: relative
}

.why-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08)
}

.why-num {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(196, 160, 110, .25)
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px
}

.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

/*.doctors {*/
/*  background: var(--surface)*/
/*}*/

/*.doc-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  gap: 32px;*/
/*  margin-top: 50px*/
/*}*/

/*.doc-card {*/
/*  background: #fff;*/
/*  border: 1px solid var(--border);*/
/*  border-radius: 18px;*/
/*  overflow: hidden;*/
/*  transition: all .35s;*/
/*  text-decoration: none;*/
/*  color: inherit*/
/*}*/

/*.doc-card:hover {*/
/*  transform: translateY(-6px);*/
/*  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);*/
/*  border-color: var(--sky)*/
/*}*/

/*.doc-img {*/
/*  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);*/
/*  min-height: 280px;*/
/*  position: relative;*/
/*  overflow: hidden*/
/*}*/

/*.doc-img::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background-image: radial-gradient(circle, rgba(139, 85, 128, .12) 1px, transparent 1px);*/
/*  background-size: 32px 32px*/
/*}*/

/*.doc-info {*/
/*  padding: 28px*/
/*}*/

/*.doc-name {*/
/*  font-size: 20px;*/
/*  font-weight: 700;*/
/*  color: var(--navy);*/
/*  margin-bottom: 6px*/
/*}*/

/*.doc-spec {*/
/*  font-size: 14px;*/
/*  font-weight: 400;*/
/*  color: var(--sky);*/
/*  margin-bottom: 14px*/
/*}*/

/*.doc-details {*/
/*  font-size: 13.5px;*/
/*  font-weight: 300;*/
/*  color: var(--mid);*/
/*  line-height: 1.7;*/
/*  margin-bottom: 16px*/
/*}*/

/*.doc-rating {*/
/*  display: flex;*/
/*  gap: 4px;*/
/*  margin-bottom: 12px*/
/*}*/

/*.doc-rating svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  fill: var(--gold);*/
/*  stroke: none*/
/*}*/

/*.doc-link {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 6px;*/
/*  font-size: 13px;*/
/*  font-weight: 600;*/
/*  color: var(--sky);*/
/*  transition: color .2s*/
/*}*/

/*.doc-link:hover {*/
/*  color: var(--navy)*/
/*}*/

/*.doc-link svg {*/
/*  width: 14px;*/
/*  height: 14px;*/
/*  stroke: currentColor;*/
/*  fill: none;*/
/*  stroke-width: 2*/
/*}*/

.appointment {
  background: #fff
}

.app-content {
  max-width: 900px;
  margin: 50px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 48px
}

.app-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center
}

.app-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 36px;
  text-align: center
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-group.full {
  grid-column: 1/-1
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  transition: all .25s
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(139, 85, 128, .1)
}

.form-textarea {
  resize: vertical;
  min-height: 100px
}

.form-btn {
  padding: 16px 40px;
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  transition: all .28s;
  font-family: var(--font);
  width: 100%
}

.form-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(89, 59, 103, .2)
}

.faqs {
  background: var(--surface)
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s
}

@media(max-width:1024px) {
  .intro-grid {
    grid-template-columns: 1fr
  }

  .serv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .doc-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .serv-grid,
  .why-grid,
  .doc-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

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

/* --- From: 16-clinical-psychology-purple --- */
.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7
}

.intro-content {
  max-width: 950px;
  margin: 50px auto 0
}

.intro-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 24px
}

.intro-content p strong {
  font-weight: 600;
  color: var(--navy)
}

.conditions {
  background: var(--surface)
}

.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px
}

.cond-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all .35s;
  text-align: center
}

.cond-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.cond-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.cond-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.cond-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.cond-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.services {
  background: #fff
}

.serv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px
}

.serv-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px
}

.serv-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px
}

.serv-section h3 svg {
  width: 32px;
  height: 32px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.serv-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.serv-item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.serv-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px
}

.serv-item div h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.serv-item div p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.approach {
  background: var(--surface)
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px
}

.approach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all .35s
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08);
  border-color: var(--gold)
}

.approach-badge {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(196, 160, 110, .12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 6px;
  margin-bottom: 18px
}

.approach-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px
}

.approach-card p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  transition: all .3s
}

.why-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25);
  flex-shrink: 0
}

.why-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.why-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.psychologist {
  background: var(--surface)
}

.psych-card {
  max-width: 1000px;
  margin: 50px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(89, 59, 103, .08)
}

.psych-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0
}

.psych-img {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  min-height: 380px;
  position: relative;
  overflow: hidden
}

.psych-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.psych-info {
  padding: 44px 40px
}

.psych-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.psych-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--sky);
  margin-bottom: 20px
}

.psych-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px
}

.psych-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  stroke: none
}

.psych-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px
}

.psych-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--sky);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s
}

.psych-link:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(89, 59, 103, .2)
}

.psych-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.psych-bottom {
  padding: 32px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border)
}

.psych-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.psych-spec-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px
}

.psych-spec-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.expect {
  background: #fff
}

.expect-content {
  max-width: 950px;
  margin: 50px auto 0
}

.expect-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px
}

.expect-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all .3s
}

.expect-step:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.expect-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.expect-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.expect-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.appointment {
  background: var(--surface)
}

.app-content {
  max-width: 900px;
  margin: 50px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 48px
}

.faqs {
  background: #fff
}

@media(max-width:1024px) {
  .cond-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .serv-split {
    grid-template-columns: 1fr
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .psych-top {
    grid-template-columns: 1fr
  }

  .psych-spec {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .cond-grid,
  .approach-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

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

  .psych-spec {
    grid-template-columns: 1fr
  }
}

/* --- From: 17-diet-nutrition-purple --- */
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px
}

.serv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all .35s
}

.serv-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.serv-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.serv-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.serv-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.conditions {
  background: #fff
}

.cond-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all .3s
}

.cond-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08)
}

.cond-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25)
}

.cond-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.cond-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.cond-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px
}

.approach-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  transition: all .3s
}

.approach-item:hover {
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08)
}

.approach-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.approach-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.approach-content p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s
}

.why-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08);
  border-color: var(--sky)
}

.why-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(196, 160, 110, .12);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 6px;
  margin-bottom: 16px
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.why-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.nutritionist {
  background: var(--surface)
}

.nutri-card {
  max-width: 1000px;
  margin: 50px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(89, 59, 103, .08)
}

.nutri-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0
}

.nutri-img {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  min-height: 380px;
  position: relative;
  overflow: hidden
}

.nutri-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.nutri-info {
  padding: 44px 40px
}

.nutri-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.nutri-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--sky);
  margin-bottom: 20px
}

.nutri-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px
}

.nutri-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  stroke: none
}

.nutri-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px
}

.nutri-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--sky);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s
}

.nutri-link:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(89, 59, 103, .2)
}

.nutri-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.nutri-bottom {
  padding: 32px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border)
}

.nutri-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.nutri-spec-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px
}

.nutri-spec-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.journey {
  background: #fff
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.journey-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all .3s
}

.journey-step:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.journey-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25)
}

.journey-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.journey-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

@media(max-width:1024px) {
  .serv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cond-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .approach-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

  .nutri-top {
    grid-template-columns: 1fr
  }

  .nutri-spec {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .serv-grid,
  .cond-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

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

  .nutri-spec {
    grid-template-columns: 1fr
  }
}

/* --- From: 18-breast-health-services-purple --- */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #c4a06e;
  --gold2: #d9b98e;
  --pink: #e85ba8;
  --pink2: #d84c9a;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif;
}

.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pink2), var(--pink));
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .15), transparent 50%)
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px
}

.ph-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px)
}

.ph-pill svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.ph-pill span {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff
}

.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7
}

.tag-line {
  width: 30px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px
}

.tag span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold)
}

.sec-title .hl {
  color: var(--pink)
}

.intro-highlight {
  background: linear-gradient(135deg, rgba(232, 91, 168, .08), rgba(216, 76, 154, .08));
  border-left: 4px solid var(--pink);
  padding: 28px 32px;
  border-radius: 14px;
  margin: 32px 0
}

.intro-highlight p {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 400
}

.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--pink)
}

.serv-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(232, 91, 168, .3)
}

.serv-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(232, 91, 168, .12);
  color: var(--pink);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 6px;
  margin-bottom: 12px
}

.technology {
  background: #fff
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px
}

.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all .3s
}

.tech-card:hover {
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.tech-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px
}

.tech-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(232, 91, 168, .3)
}

.tech-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.tech-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2
}

.tech-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px
}

.tech-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.tech-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.tech-feature span {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid)
}

.screening {
  background: var(--surface)
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.screen-visual {
  background: linear-gradient(145deg, #fce4f0, #f9d4e8);
  border-radius: 24px;
  min-height: 480px;
  position: relative;
  overflow: hidden
}

.screen-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 91, 168, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.screen-content {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.screen-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all .3s
}

.screen-item:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.screen-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.screen-item div h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.screen-item div p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.why-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08);
  border-color: var(--pink)
}

.why-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(232, 91, 168, .3);
  margin-bottom: 18px
}

.radiologist {
  background: var(--surface)
}

.rad-card {
  max-width: 1000px;
  margin: 50px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(89, 59, 103, .08)
}

.rad-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0
}

.rad-img {
  background: linear-gradient(145deg, #fce4f0, #f9d4e8);
  min-height: 380px;
  position: relative;
  overflow: hidden
}

.rad-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 91, 168, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.rad-info {
  padding: 44px 40px
}

.rad-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.rad-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--pink);
  margin-bottom: 20px
}

.rad-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px
}

.rad-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  stroke: none
}

.rad-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px
}

.rad-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--pink);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s
}

.rad-link:hover {
  background: var(--pink2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 91, 168, .35)
}

.rad-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.rad-bottom {
  padding: 32px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border)
}

.rad-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.rad-spec-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px
}

.rad-spec-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.process {
  background: #fff
}

.proc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.proc-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all .3s
}

.proc-step:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.proc-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(232, 91, 168, .3)
}

.proc-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.proc-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 91, 168, .1)
}

.form-btn {
  padding: 16px 40px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  transition: all .28s;
  font-family: var(--font);
  width: 100%
}

.form-btn:hover {
  background: var(--pink2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 91, 168, .35)
}

.faq-item:hover {
  border-color: var(--pink);
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.faq-q::before {
  content: 'Q';
  width: 32px;
  height: 32px;
  background: var(--pink);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0
}

@media(max-width:1024px) {
  .serv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tech-grid,
  .screen-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .rad-top {
    grid-template-columns: 1fr
  }

  .rad-spec {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .serv-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

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

  .rad-spec {
    grid-template-columns: 1fr
  }
}

/* --- From: 19-cardiovascular-imaging-purple --- */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #c4a06e;
  --gold2: #d9b98e;
  --red: #dc3545;
  --red2: #c82333;
  --red-light: #ff6b7a;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif;
}

.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--red2), var(--red));
  overflow: hidden
}

.tag-line {
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

.tag span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold)
}

.sec-title .hl {
  color: var(--sky)
}

.intro-highlight {
  background: linear-gradient(135deg, rgba(220, 53, 69, .08), rgba(200, 35, 51, .08));
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  border-radius: 14px;
  margin: 32px 0
}

.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--red)
}

.serv-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(220, 53, 69, .3)
}

.serv-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(220, 53, 69, .12);
  color: var(--red);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 6px;
  margin-bottom: 12px
}

.tech-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(220, 53, 69, .3)
}

.tech-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.screen-visual {
  background: linear-gradient(145deg, #ffeaec, #ffd6db);
  border-radius: 24px;
  min-height: 480px;
  position: relative;
  overflow: hidden
}

.screen-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(220, 53, 69, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.screen-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px
}

.cond-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all .3s
}

.cond-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08);
  border-color: var(--red)
}

.cond-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(220, 53, 69, .3)
}

.cond-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.why {
  background: var(--surface)
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s
}

.why-card:hover {
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08);
  border-color: var(--red)
}

.why-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(220, 53, 69, .3);
  margin-bottom: 18px
}

.specialist {
  background: #fff
}

.spec-card {
  max-width: 1000px;
  margin: 50px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(89, 59, 103, .08)
}

.spec-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0
}

.spec-img {
  background: linear-gradient(145deg, #ffeaec, #ffd6db);
  min-height: 380px;
  position: relative;
  overflow: hidden
}

.spec-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(220, 53, 69, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.spec-info {
  padding: 44px 40px
}

.spec-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.spec-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 20px
}

.spec-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px
}

.spec-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  stroke: none
}

.spec-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px
}

.spec-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s
}

.spec-link:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 53, 69, .35)
}

.spec-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.spec-bottom {
  padding: 32px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border)
}

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

.spec-spec-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px
}

.spec-spec-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.process {
  background: var(--surface)
}

.proc-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all .3s
}

.proc-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(220, 53, 69, .3)
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, .1)
}

.form-btn {
  padding: 16px 40px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  transition: all .28s;
  font-family: var(--font);
  width: 100%
}

.form-btn:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 53, 69, .35)
}

.faq-item:hover {
  border-color: var(--red);
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.faq-q::before {
  content: 'Q';
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0
}

@media(max-width:1024px) {
  .serv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tech-grid,
  .screen-grid {
    grid-template-columns: 1fr
  }

  .why-grid,
  .cond-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .spec-top {
    grid-template-columns: 1fr
  }

  .spec-spec {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .serv-grid,
  .why-grid,
  .cond-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

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

  .spec-spec {
    grid-template-columns: 1fr
  }
}

/* --- From: 2-2-about-us-updated --- */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #8b5580;
  --gold2: #a87ba6;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif;
  --r: 14px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

.cur {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--sky2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s
}

.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 12.5px;
  letter-spacing: .04em
}

.tb-left svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0
}

.tb-right {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em
}

nav {
  position: fixed;
  /*top: 38px;*/
  left: 0;
  right: 0;
  z-index: 900;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .06)
}

nav.sc {
  top: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .08)
}

.logo-m {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s
}

nav.sc .logo-m {
  background: var(--surface);
  border-color: var(--border)
}

.logo-m svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.5;
  transition: stroke .3s
}

nav.sc .logo-m svg {
  stroke: var(--sky)
}

.logo-name {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  transition: color .3s;
  line-height: 1.1
}

nav.sc .logo-name {
  color: var(--navy)
}

.logo-sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s
}

nav.sc .logo-sub {
  color: var(--muted)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-links a {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mid);
  background: none;
  border: none;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: none;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  letter-spacing: .005em
}

nav.sc .nav-links a {
  color: var(--mid)
}

nav.sc .nav-links a:hover {
  color: var(--navy);
  background: var(--surface)
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 9px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  margin-left: 6px;
  border: 1px solid var(--navy)
}

nav.sc .nav-cta {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.nav-cta:hover {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 6px 20px rgba(139, 85, 128, .25)
}

nav.sc .nav-cta:hover {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 6px 20px rgba(139, 85, 128, .25)
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%)
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 85, 128, .2), transparent 50%);
  pointer-events: none
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 180px 56px 100px;
  text-align: center
}

.ph-pill span {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-alt)
}

.ph-title {
  font-family: var(--font);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, .18)
}

.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7
}

.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid rgba(255, 255, 255, .9)
}

.ph-btn:hover {
  background: var(--sky2);
  color: #fff;
  border-color: var(--sky2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(157, 101, 146, .3)
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px
}

.tag-line {
  width: 30px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px
}

.sec-title {
  font-family: var(--font);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.03em
}

.sec-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mid);
  margin-top: 16px
}

/* About Story */
.about-story {
  background: #fff
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.story-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -.02em
}

/* Timeline */
.timeline {
  background: var(--surface);
  padding: 80px 0
}

.timeline-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px
}

.tl-items {
  position: relative;
  padding: 40px 0
}

.tl-items::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky), var(--mist))
}

.tl-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 60px
}

.tl-item:last-child {
  margin-bottom: 0
}

.tl-dot {
  position: absolute;
  left: 28px;
  top: 8px;
  width: 26px;
  height: 26px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(139, 85, 128, .15)
}

.tl-year {
  font-size: 48px;
  font-weight: 800;
  color: var(--sky);
  opacity: .3;
  margin-bottom: 8px;
  letter-spacing: -.03em
}

.tl-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.tl-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 500px
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px
}

.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: block
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.svc-ico {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.svc-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.svc-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px
}

.svc-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5
}

/* Mission */
.mission {
  background: #fff
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 50px
}

.mission-visual {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  border-radius: 22px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.mission-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .2) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.value-item {
  display: flex;
  gap: 16px
}

.value-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--surface);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center
}

.value-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.value-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

.value-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6
}

/* Why Trust */
.why-trust {
  background: var(--surface)
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px
}

.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.trust-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px
}

.trust-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.trust-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.trust-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5
}

/* Impact Stats */
.impact {
  background: #fff
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px
}

.impact-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border)
}

.impact-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em
}

.impact-num sup {
  font-size: 24px;
  color: var(--sky)
}

.impact-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 12px
}

.impact-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

/* Journey Steps */
.journey {
  background: var(--surface)
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px
}

.journey-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative
}

.step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: var(--sky);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .3)
}

.journey-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 10px
}

.journey-step p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

/* FAQs */
.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--sky);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 13px
}

.foot-logo-n {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: -.02em
}

.foot-col h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 20px;
  letter-spacing: -.01em
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 14px
}

.foot-moh {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  margin-top: 5px;
  letter-spacing: .05em
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

@media (max-width:1024px) {

  .story-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .journey-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:768px) {

  .trust-grid,
  .journey-grid,
  .impact-grid,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }
}

/* --- From: 20-diagnostic-imaging --- */
.intro-highlight {
  background: linear-gradient(135deg, rgba(139, 85, 128, .08), rgba(157, 101, 146, .08));
  border-left: 4px solid var(--sky);
  padding: 28px 32px;
  border-radius: 14px;
  margin: 32px 0
}

.intro-highlight svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px
}

.serv-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 12px
}

.serv-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(139, 85, 128, .12);
  color: var(--sky);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 6px;
  margin-bottom: 12px
}

.serv-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px
}

.serv-feature {
  display: flex;
  gap: 8px;
  align-items: flex-start
}

.serv-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.serv-feature span {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid)
}

.tech-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.tech-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.applications {
  background: var(--surface)
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px
}

.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all .3s
}

.app-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08);
  border-color: var(--sky)
}

.app-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25)
}

.app-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.app-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.app-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.why-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25);
  margin-bottom: 18px
}

.comfort {
  background: var(--surface)
}

.comfort-content {
  max-width: 900px;
  margin: 50px auto 0
}

.comfort-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  transition: all .3s
}

.comfort-item:hover {
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08)
}

.comfort-ico {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.comfort-ico svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.comfort-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.comfort-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

@media(max-width:1024px) {
  .serv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tech-grid {
    grid-template-columns: 1fr
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .serv-grid,
  .app-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

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

/* --- From: 21-how-to-book --- */
.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  max-width: 750px;
  margin: 0 auto 44px;
  line-height: 1.7
}

.ph-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.booking-methods {
  background: #fff
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px
}

.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all .35s;
  cursor: none;
  text-decoration: none;
  color: inherit;
  display: block
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.method-ico {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(139, 85, 128, .25)
}

.method-ico svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.method-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.method-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px
}

.method-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  transition: all .22s
}

.method-link:hover {
  color: var(--navy)
}

.method-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.process {
  background: var(--surface);
  padding: 120px 0
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--sky), var(--mist));
  z-index: 0
}

.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .3s
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(196, 160, 110, .3);
  border: 3px solid #fff
}

.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.process-step p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65
}

.what-expect {
  background: #fff
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: center
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.expect-item {
  display: flex;
  gap: 18px
}

.expect-ico {
  width: 50px;
  height: 50px;
  background: rgba(139, 85, 128, .08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.expect-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.expect-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.expect-item p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.expect-visual {
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  border-radius: 24px;
  min-height: 550px;
  position: relative;
  overflow: hidden
}

.expect-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.requirements {
  background: var(--surface);
  padding: 120px 0
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.req-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  transition: all .3s
}

.req-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.req-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65
}

.req-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.insurance {
  background: #fff
}

.ins-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.ins-visual {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  border-radius: 24px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.ins-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.ins-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(89, 59, 103, .15)
}

.ins-badge-title {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px
}

.ins-badge-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy)
}

.ins-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px
}

.ins-logo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center
}

.emergency {
  background: linear-gradient(135deg, #dc3545, #c82333);
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .15), transparent 60%)
}

.emerg-in {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center
}

.emerg-in h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px
}

.emerg-in p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 36px;
  line-height: 1.7
}

.emerg-note {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;
  padding: 28px;
  margin-top: 40px
}

.emerg-note p {
  font-size: 15px;
  color: rgba(255, 255, 255, .95);
  margin: 0
}

.policies {
  background: var(--surface)
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px
}

.policy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all .3s
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(89, 59, 103, .07)
}

.policy-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.policy-item {
  display: flex;
  gap: 14px
}

.policy-item-ico {
  width: 32px;
  height: 32px;
  background: rgba(139, 85, 128, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.policy-item-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2
}

.policy-item p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  padding-top: 4px
}

.contact-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 85, 128, .12), transparent 70%)
}

.contact-grid {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.contact-info h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px
}

.contact-info p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin-bottom: 36px
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-method {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: all .3s
}

.contact-method:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35)
}

.cm-ico {
  width: 54px;
  height: 54px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cm-ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.cm-text strong {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 4px;
  font-weight: 500
}

.cm-text span {
  font-size: 20px;
  font-weight: 700;
  color: #fff
}

.contact-form {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 42px;
  box-shadow: 0 20px 60px rgba(89, 59, 103, .2)
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.contact-form>p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: none;
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px
}

@media(max-width:1024px) {

  .methods-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .expect-grid,
  .ins-content,
  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {

  .methods-grid,
  .req-grid,
  .policy-grid,
  .faq-grid,
  .process-steps {
    grid-template-columns: 1fr
  }
}

/* --- From: 22-patient-information-purple --- */
.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7
}

.quick-nav {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid var(--border)
}

.qn-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.qn-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: block
}

.qn-card:hover {
  background: #fff;
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(89, 59, 103, .07)
}

.qn-ico {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .2)
}

.qn-ico svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.qn-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.qn-card p {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5
}

.before-visit {
  background: var(--surface)
}

.bv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.bv-visual {
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  border-radius: 24px;
  min-height: 500px;
  position: relative;
  overflow: hidden
}

.bv-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.bv-checklist {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.bv-item {
  display: flex;
  gap: 16px
}

.bv-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25)
}

.bv-item div h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.bv-item div p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.what-bring {
  background: #fff
}

.wb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.wb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  transition: all .3s
}

.wb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08);
  border-color: var(--sky)
}

.wb-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px
}

.wb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.wb-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65
}

.wb-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.procedures {
  background: var(--surface)
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px
}

.proc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .35s;
  text-decoration: none;
  color: inherit;
  display: block
}

.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.proc-header {
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.proc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .1), transparent 60%)
}

.proc-ico {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, .2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1
}

.proc-ico svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.proc-header h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1
}

.proc-body {
  padding: 24px
}

.proc-body p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 18px
}

.proc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sky);
  transition: all .22s
}

.proc-link:hover {
  color: var(--navy)
}

.proc-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.during-visit {
  background: #fff
}

.dv-timeline {
  max-width: 900px;
  margin: 50px auto 0;
  position: relative
}

.dv-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky), var(--mist));
  z-index: 0
}

.dv-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1
}

.dv-step:last-child {
  margin-bottom: 0
}

.dv-dot {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(139, 85, 128, .3);
  border: 4px solid #fff
}

.dv-dot svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.dv-content {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 6px
}

.dv-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.dv-content p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.parking {
  background: var(--surface)
}

.park-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.park-info {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.park-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .3s
}

.park-item:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .07)
}

.park-ico {
  width: 50px;
  height: 50px;
  background: rgba(139, 85, 128, .08);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.park-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.park-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.park-item p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.park-visual {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  border-radius: 24px;
  min-height: 450px;
  position: relative;
  overflow: hidden
}

.park-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.visitor {
  background: #fff
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px
}

.visit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all .3s
}

.visit-card:hover {
  border-color: var(--sky);
  box-shadow: 0 12px 32px rgba(89, 59, 103, .06)
}

.visit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px
}

.visit-points {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.visit-point {
  display: flex;
  gap: 14px
}

.vp-ico {
  width: 32px;
  height: 32px;
  background: rgba(139, 85, 128, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.vp-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2
}

.visit-point p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  padding-top: 4px
}

.accessibility {
  background: var(--surface)
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.access-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: all .3s
}

.access-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.access-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(196, 160, 110, .25)
}

.access-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.access-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.access-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

@media(max-width:1024px) {
  .qn-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .bv-grid,
  .park-grid {
    grid-template-columns: 1fr
  }

  .proc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .wb-grid,
  .access-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .qn-grid,
  .wb-grid,
  .proc-grid,
  .access-grid,
  .visit-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }
}

/* --- From: 23-patient-rights-purple --- */
.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7
}

.intro {
  background: #fff;
  padding: 80px 0
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.intro-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 20px
}

.rights {
  background: var(--surface)
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px
}

.right-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all .35s
}

.right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.right-header {
  display: flex;
  gap: 18px;
  margin-bottom: 20px
}

.right-ico {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.right-ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.right-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 12px
}

.right-content {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.right-item {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.right-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.right-item p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.responsibilities {
  background: #fff
}

.resp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px
}

.resp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all .35s
}

.resp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--gold)
}

.resp-header {
  display: flex;
  gap: 18px;
  margin-bottom: 20px
}

.resp-ico {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25)
}

.resp-ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.resp-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 12px
}

.resp-content {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.resp-item {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.resp-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.resp-item p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.privacy {
  background: var(--surface)
}

.priv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.priv-visual {
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  border-radius: 24px;
  min-height: 500px;
  position: relative;
  overflow: hidden
}

.priv-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.priv-points {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.priv-point {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .3s
}

.priv-point:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .07)
}

.pp-ico {
  width: 44px;
  height: 44px;
  background: rgba(139, 85, 128, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pp-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.priv-point h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.priv-point p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.complaints {
  background: #fff
}

.comp-content {
  max-width: 1000px;
  margin: 50px auto 0
}

.comp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px
}

.comp-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all .3s
}

.comp-step:hover {
  background: #fff;
  box-shadow: 0 10px 28px rgba(89, 59, 103, .06)
}

.cs-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.comp-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.comp-step p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6
}

.safety {
  background: var(--surface)
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.safety-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: all .35s
}

.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.safety-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(196, 160, 110, .25)
}

.safety-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.safety-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.safety-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.cta {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .12), transparent 70%)
}

.cta-in {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center
}

.cta-in h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15
}

.cta-in p {
  font-family: var(--font-alt);
  font-size: 19px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 38px;
  line-height: 1.7
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.cta-btn-w {
  background: #fff;
  color: var(--navy);
  border-color: #fff
}

.cta-btn-w:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 160, 110, .35)
}

.cta-btn-o {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

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

@media(max-width:1024px) {

  .rights-grid,
  .resp-grid,
  .priv-grid {
    grid-template-columns: 1fr
  }

  .comp-steps,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .rights-grid,
  .resp-grid,
  .comp-steps,
  .safety-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }
}

/* --- From: 24-insurance-coverage-purple --- */
.stats {
  background: var(--surface);
  padding: 60px 0
}

.stats-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.stat-card {
  text-align: center
}

.stat-num {
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 12px
}

.stat-num .plus {
  font-size: .7em;
  color: var(--gold)
}

.stat-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .08em
}

.providers {
  background: #fff
}

.prov-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center
}

.prov-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px
}

.prov-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: all .3s;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center
}

.prov-card:hover {
  background: #fff;
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(89, 59, 103, .07)
}

.prov-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy)
}

.verify {
  background: var(--surface)
}

.verify-content {
  max-width: 1000px;
  margin: 50px auto 0
}

.verify-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px
}

.verify-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s
}

.verify-step:hover {
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08)
}

.vs-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.verify-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.verify-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.preauth {
  background: #fff
}

.preauth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.preauth-visual {
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  border-radius: 24px;
  min-height: 450px;
  position: relative;
  overflow: hidden
}

.preauth-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.preauth-info {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.preauth-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .3s
}

.preauth-item:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .07)
}

.pa-ico {
  width: 44px;
  height: 44px;
  background: rgba(139, 85, 128, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pa-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.preauth-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.preauth-item p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.coordinator {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.coordinator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .12), transparent 70%)
}

.coord-in {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px
}

.coord-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center
}

.coord-left h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15
}

.coord-left p {
  font-family: var(--font-alt);
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  line-height: 1.7
}

.coord-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.coord-contact {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  padding: 24px;
  transition: all .3s;
  text-decoration: none;
  color: #fff
}

.coord-contact:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateX(6px)
}

.cc-ico {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cc-ico svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.coord-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.coord-contact p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .85)
}

.payment {
  background: var(--surface)
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px
}

.payment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.pay-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(196, 160, 110, .25)
}

.pay-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.payment-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.payment-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.coverage {
  background: #fff
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px
}

.coverage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all .3s
}

.coverage-card:hover {
  border-color: var(--sky);
  box-shadow: 0 12px 32px rgba(89, 59, 103, .06)
}

.coverage-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px
}

.coverage-card h3 svg {
  width: 28px;
  height: 28px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.coverage-item {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.coverage-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.coverage-item p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

@media(max-width:1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .prov-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .verify-steps,
  .preauth-grid,
  .coord-grid {
    grid-template-columns: 1fr
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

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

  .payment-grid,
  .coverage-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }
}

/* --- From: 25-blogs-listing-page --- */
.categories {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid var(--border)
}

.cat-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.cat-btn {
  padding: 10px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: all .25s
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  box-shadow: 0 6px 18px rgba(139, 85, 128, .2)
}

.featured {
  background: var(--surface)
}

.feat-content {
  margin-top: 50px
}

.feat-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: all .4s;
  text-decoration: none;
  color: inherit
}

.feat-main:hover {
  box-shadow: 0 20px 60px rgba(89, 59, 103, .12);
  transform: translateY(-6px)
}

.feat-img {
  background: linear-gradient(145deg, #c9a8c4, #e8d4e5);
  min-height: 450px;
  position: relative;
  overflow: hidden
}

.feat-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.feat-txt {
  padding: 60px 50px
}

.feat-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px
}

.feat-cat {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 85, 128, .1);
  color: var(--sky);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 6px
}

.feat-date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400
}

.feat-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px
}

.feat-excerpt {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px
}

.feat-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky);
  transition: all .22s
}

.feat-read:hover {
  color: var(--navy)
}

.feat-read svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.articles {
  background: #fff
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px
}

.art-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .35s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column
}

.art-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.art-img {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  min-height: 220px;
  position: relative;
  overflow: hidden
}

.art-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .1) 1px, transparent 1px);
  background-size: 28px 28px
}

.art-content {
  padding: 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.art-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px
}

.art-cat {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(196, 160, 110, .12);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 5px
}

.art-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400
}

.art-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px
}

.art-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1
}

.art-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  transition: all .22s
}

.art-read:hover {
  color: var(--navy)
}

.art-read svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.newsletter {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .12), transparent 70%)
}

.news-in {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center
}

.news-in h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15
}

.news-in p {
  font-family: var(--font-alt);
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 38px;
  line-height: 1.7
}

.news-form {
  display: flex;
  gap: 12px;
  max-width: 550px;
  margin: 0 auto
}

.news-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 11px;
  border: 2px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 15px;
  font-family: var(--font);
  font-weight: 400;
  transition: all .25s
}

.news-input::placeholder {
  color: rgba(255, 255, 255, .6)
}

.news-input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, .25)
}

.news-btn {
  padding: 16px 36px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  transition: all .28s;
  font-family: var(--font)
}

.news-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 160, 110, .35)
}

.topics {
  background: var(--surface)
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px
}

.topic-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
  text-decoration: none;
  color: inherit
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08);
  border-color: var(--sky)
}

.topic-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.topic-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.topic-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.topic-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.topic-count {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: var(--surface);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sky)
}

@media(max-width:1024px) {
  .feat-main {
    grid-template-columns: 1fr
  }

  .art-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .art-grid,
  .topics-grid {
    grid-template-columns: 1fr
  }

  .news-form {
    flex-direction: column
  }
}

/* --- From: 26-contact-us --- */
.quick-contact {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid var(--border)
}

.qc-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.qc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all .35s;
  text-decoration: none;
  color: inherit
}

.qc-card:hover {
  background: #fff;
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.qc-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.qc-ico svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.qc-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.qc-card p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sky);
  margin-bottom: 6px
}

.qc-card span {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted)
}

.contact-main {
  background: var(--surface)
}

.cm-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 50px
}

.cm-info {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.cm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all .3s
}

.cm-card:hover {
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08)
}

.cm-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px
}

.cm-card h3 svg {
  width: 26px;
  height: 26px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.cm-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cm-item {
  display: flex;
  gap: 14px
}

.cm-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px
}

.cm-item div strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 4px
}

.cm-item div p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.cm-item div a {
  color: var(--sky);
  text-decoration: none;
  transition: color .2s
}

.cm-item div a:hover {
  color: var(--navy)
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px
}

.cf-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.cf-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 28px
}

.form-textarea {
  resize: vertical;
  min-height: 120px
}

.form-btn {
  padding: 16px 40px;
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  transition: all .28s;
  font-family: var(--font);
  margin-top: 8px;
  width: 100%
}

.hours {
  background: #fff
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.hours-visual {
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  border-radius: 24px;
  min-height: 450px;
  position: relative;
  overflow: hidden
}

.hours-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6
}

.hours-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border)
}

.hours-row:last-child {
  border-bottom: none
}

.hours-day {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy)
}

.hours-time {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid)
}

.hours-note {
  background: rgba(139, 85, 128, .08);
  border-left: 3px solid var(--sky);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 12px
}

.hours-note p {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.7
}

.departments {
  background: var(--surface)
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px
}

.dept-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all .35s
}

.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08);
  border-color: var(--gold)
}

.dept-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25)
}

.dept-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.dept-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.dept-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 14px
}

.dept-contact {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.dept-contact a {
  font-size: 13px;
  font-weight: 500;
  color: var(--sky);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s
}

.dept-contact a:hover {
  color: var(--navy)
}

.dept-contact svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.location {
  background: #fff
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center
}

.loc-map {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  border-radius: 24px;
  min-height: 500px;
  position: relative;
  overflow: hidden
}

.loc-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .12) 1px, transparent 1px);
  background-size: 32px 32px
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.loc-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .3s
}

.loc-item:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .07)
}

.loc-ico {
  width: 50px;
  height: 50px;
  background: rgba(139, 85, 128, .08);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.loc-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.loc-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.loc-item p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

@media(max-width:1024px) {
  .qc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cm-grid,
  .hours-grid,
  .loc-grid {
    grid-template-columns: 1fr
  }

  .dept-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .qc-grid,
  .dept-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

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

/* --- From: 27-blog-details-page --- */
.article-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  overflow: hidden;
  padding-top: 140px
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 85, 128, .2), transparent 50%)
}

.ah-in {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 56px
}

.ah-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.ah-cat {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(139, 85, 128, .2);
  border: 1px solid rgba(139, 85, 128, .4);
  color: var(--aqua);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 6px
}

.ah-date {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px
}

.ah-date svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.ah-read {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 400
}

.ah-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.ah-excerpt {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 32px
}

.ah-authors {
  display: flex;
  gap: 16px;
  align-items: center
}

.ah-author {
  display: flex;
  gap: 12px;
  align-items: center
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .3)
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff
}

.author-title {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, .7)
}

.breadcrumb {
  background: var(--surface);
  padding: 20px 0;
  border-bottom: 1px solid var(--border)
}

.bc-in {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px
}

.bc-in a {
  color: var(--mid);
  text-decoration: none;
  transition: color .2s
}

.bc-in a:hover {
  color: var(--sky)
}

.bc-sep {
  color: var(--muted)
}

.bc-current {
  color: var(--navy);
  font-weight: 500
}

.article-content {
  padding: 80px 0
}

.ac-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 56px
}

.article-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px
}

.share-bar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.share-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px
}

.share-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .25s;
  text-decoration: none
}

.share-btn:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)
}

.share-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .25s
}

.share-btn:hover svg {
  stroke: #fff
}

.content-body {
  flex: 1
}

.content-body h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 48px 0 20px;
  letter-spacing: -.02em
}

.content-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 36px 0 16px;
  letter-spacing: -.01em
}

.content-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 24px
}

.content-body strong {
  font-weight: 600;
  color: var(--navy)
}

.content-body em {
  font-style: italic;
  color: var(--text)
}

.content-body ul,
.content-body ol {
  margin: 24px 0;
  padding-left: 28px
}

.content-body li {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 12px
}

.content-body blockquote {
  border-left: 4px solid var(--sky);
  padding: 24px 28px;
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  font-family: var(--font-alt);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.7
}

.content-body .highlight {
  background: rgba(139, 85, 128, .08);
  padding: 28px 32px;
  border-radius: 14px;
  margin: 32px 0;
  border: 1px solid rgba(139, 85, 128, .15)
}

.content-body .highlight h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 14px
}

.content-body .highlight p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 0
}

.article-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border)
}

.tags-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.tag-item {
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: all .25s
}

.tag-item:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky)
}

.article-footer {
  background: var(--surface);
  padding: 40px;
  border-radius: 18px;
  margin-top: 48px
}

.af-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.af-author {
  display: flex;
  gap: 20px
}

.af-author-img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8d4e5, #c9a8c4);
  flex-shrink: 0
}

.af-author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.af-author-info p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65
}

.af-author-info a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.af-author-info a:hover {
  color: var(--navy)
}

.comments {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--border)
}

.comments-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px
}

.comment-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 48px
}

.cf-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  transition: all .25s
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(139, 85, 128, .1)
}

.form-btn {
  padding: 14px 32px;
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  transition: all .28s;
  font-family: var(--font)
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.comment {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px
}

.comment-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sky2), var(--navy));
  flex-shrink: 0
}

.comment-meta {
  flex: 1
}

.comment-author {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy)
}

.comment-date {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px
}

.comment-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75
}

.comment-reply {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  transition: color .2s
}

.comment-reply:hover {
  color: var(--navy)
}

.related {
  background: var(--surface);
  padding: 80px 0
}

.rel-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px
}

.rel-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.rel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .35s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column
}

.rel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1);
  border-color: var(--sky)
}

.rel-img {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  min-height: 220px;
  position: relative;
  overflow: hidden
}

.rel-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .1) 1px, transparent 1px);
  background-size: 28px 28px
}

.rel-content {
  padding: 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.rel-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px
}

.rel-cat {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(196, 160, 110, .12);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 5px
}

.rel-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400
}

.rel-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px
}

.rel-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1
}

.rel-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  transition: all .22s
}

.rel-read:hover {
  color: var(--navy)
}

.rel-read svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

@media(max-width:1024px) {
  .af-grid {
    grid-template-columns: 1fr
  }

  .rel-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .form-grid {
    grid-template-columns: 1fr
  }

  .rel-grid {
    grid-template-columns: 1fr
  }
}

/* --- From: 28-privacy-policy --- */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #c4a06e;
  --gold2: #d9b98e;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif
}

.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  overflow: hidden
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 160px 56px 60px;
  text-align: center
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px
}

.ph-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.5
}

.ph-badge span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff
}

.ph-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 16px
}

.ph-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75
}

.ph-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6)
}

.ph-updated svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

section {
  padding: 80px 0
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 60px
}

.toc h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px
}

.toc h3 svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .2s
}

.toc-link:hover {
  background: #fff;
  color: var(--sky)
}

.toc-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0
}

.policy-section {
  margin-bottom: 60px
}

.policy-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px
}

.policy-section h2 svg {
  width: 28px;
  height: 28px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.policy-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 16px
}

.policy-section p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 20px
}

.policy-section ul {
  margin: 16px 0 20px 24px
}

.policy-section li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 10px
}

.policy-section li strong {
  font-weight: 600;
  color: var(--navy)
}

.highlight-box {
  background: linear-gradient(135deg, rgba(139, 85, 128, .08), rgba(157, 101, 146, .08));
  border-left: 4px solid var(--sky);
  padding: 24px 28px;
  border-radius: 12px;
  margin: 24px 0
}

.highlight-box p {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 400
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all .3s
}

.info-card:hover {
  box-shadow: 0 8px 24px rgba(89, 59, 103, .08)
}

.info-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 12px
}

.info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.info-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin: 0
}

.contact-box {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  margin-top: 60px
}

.contact-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff
}

.contact-box p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 24px
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s
}

.contact-link:hover {
  background: rgba(255, 255, 255, .2)
}

.contact-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.rv.d1 {
  transition-delay: .09s
}

.rv.d2 {
  transition-delay: .18s
}

@media(max-width:768px) {
  .toc-list {
    grid-template-columns: 1fr
  }

  .info-grid {
    grid-template-columns: 1fr
  }

  .contact-links {
    flex-direction: column
  }
}

/* --- From: 29-cancellation-policy --- */
.quick-ref {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 60px
}

.quick-ref h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center
}

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

.fee-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all .3s
}

.fee-card:hover {
  box-shadow: 0 8px 24px rgba(89, 59, 103, .08)
}

.fee-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.fee-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.fee-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.fee-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.fee-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5
}

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin: 24px 0
}

.info-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.info-box h4 svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5
}

.info-box p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px
}

.info-box p:last-child {
  margin-bottom: 0
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0
}

.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: all .3s
}

.method-card:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(89, 59, 103, .08)
}

.method-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 12px
}

.method-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.method-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 12px
}

.method-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--sky);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.method-card a:hover {
  color: var(--navy)
}

.method-card a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor
}

.faq-section {
  background: var(--surface);
  border-radius: 18px;
  padding: 48px;
  margin-top: 60px
}

.faq-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  text-align: center
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all .3s
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(89, 59, 103, .08)
}

.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  gap: 12px
}

@media(max-width:768px) {

  .fee-grid,
  .method-grid {
    grid-template-columns: 1fr
  }

  .contact-links {
    flex-direction: column
  }
}

/* --- From: 3-specialities-updated --- */
.nav-links a,
.nav-links button {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mid);
  background: none;
  border: none;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: none;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  letter-spacing: .005em
}

nav.sc .nav-links a,
nav.sc .nav-links button {
  color: var(--mid)
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--navy);
  background: var(--surface)
}

nav.sc .nav-links a:hover,
nav.sc .nav-links button:hover {
  color: var(--navy);
  background: var(--surface)
}

.features {
  background: var(--surface);
  padding: 80px 0
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(89, 59, 103, .1)
}

.feat-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.feat-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.feat-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em
}

.feat-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7
}

.depts {
  background: #fff
}

.depts-head {
  text-align: center;
  margin-bottom: 56px
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 36px rgba(89, 59, 103, .05)
}

.dc {
  background: #fff;
  padding: 34px 28px;
  cursor: none;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block
}

.dc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--mist));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s
}

.dc:hover::after {
  transform: scaleX(1)
}

.dc:hover {
  background: #4a2f56;
  z-index: 1;
  box-shadow: 0 22px 56px rgba(89, 59, 103, .18)
}

.dc-num {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 22px;
  display: block;
  font-weight: 500;
  transition: color .3s
}

.dc:hover .dc-num {
  color: rgba(255, 255, 255, .3)
}

.dc-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s
}

.dc-ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s
}

.dc:hover .dc-ico {
  background: rgba(255, 255, 255, .1)
}

.dc:hover .dc-ico svg {
  stroke: var(--aqua)
}

.dc h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.32;
  transition: color .3s
}

.dc:hover h3 {
  color: #fff
}

.dc p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  transition: color .3s
}

.dc:hover p {
  color: rgba(255, 255, 255, .55)
}

.dc-arr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: all .3s
}

.dc:hover .dc-arr {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2)
}

.dc-arr svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  transition: all .3s
}

.dc:hover .dc-arr svg {
  stroke: #fff;
  transform: translate(2px, -2px)
}

/*.doctors {*/
/*  background: #fff*/
/*}*/

/*.doc-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  gap: 26px*/
/*}*/

/*.doc-card {*/
/*  background: #fff;*/
/*  border: 1px solid var(--border);*/
/*  border-radius: 20px;*/
/*  overflow: hidden;*/
/*  transition: all .38s;*/
/*  cursor: none*/
/*}*/

/*.doc-card:hover {*/
/*  transform: translateY(-7px);*/
/*  box-shadow: 0 32px 80px rgba(89, 59, 103, .12);*/
/*  border-color: transparent*/
/*}*/

/*.doc-photo {*/
/*  height: 280px;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  background: linear-gradient(150deg, #e8d4e5, #d4b8d0, #c09abc)*/
/*}*/

/*.doc-photo-fade {*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 50%;*/
/*  background: linear-gradient(to top, rgba(89, 59, 103, .5), transparent)*/
/*}*/

/*.doc-av {*/
/*  width: 96px;*/
/*  height: 96px;*/
/*  border-radius: 50%;*/
/*  background: rgba(255, 255, 255, .3);*/
/*  border: 2px solid rgba(255, 255, 255, .5);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center*/
/*}*/

/*.doc-av svg {*/
/*  width: 50px;*/
/*  height: 50px;*/
/*  stroke: rgba(89, 59, 103, .35);*/
/*  fill: none;*/
/*  stroke-width: .85*/
/*}*/

/*.doc-badge {*/
/*  position: absolute;*/
/*  bottom: 16px;*/
/*  left: 18px;*/
/*  background: var(--sky);*/
/*  color: #fff;*/
/*  border-radius: 7px;*/
/*  padding: 5px 12px;*/
/*  font-size: 11px;*/
/*  font-weight: 600;*/
/*  letter-spacing: .07em*/
/*}*/

/*.doc-info {*/
/*  padding: 24px 26px*/
/*}*/

/*.doc-info h3 {*/
/*  font-family: var(--font);*/
/*  font-size: 18px;*/
/*  font-weight: 700;*/
/*  color: var(--navy);*/
/*  margin-bottom: 5px;*/
/*  letter-spacing: -.02em*/
/*}*/

/*.doc-spec {*/
/*  font-size: 13.5px;*/
/*  font-weight: 300;*/
/*  color: var(--muted);*/
/*  margin-bottom: 14px;*/
/*  line-height: 1.5*/
/*}*/

/*.doc-quals {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 6px;*/
/*  margin-bottom: 14px*/
/*}*/

/*.dq {*/
/*  font-size: 11px;*/
/*  font-weight: 500;*/
/*  background: var(--surface);*/
/*  color: var(--mid);*/
/*  padding: 4px 10px;*/
/*  border-radius: 100px;*/
/*  letter-spacing: .02em*/
/*}*/

/*.doc-lang {*/
/*  font-size: 12.5px;*/
/*  font-weight: 300;*/
/*  color: var(--muted);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 6px;*/
/*  margin-bottom: 18px*/
/*}*/

/*.doc-lang svg {*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  stroke: var(--muted);*/
/*  fill: none;*/
/*  stroke-width: 1.5*/
/*}*/

/*.doc-acts {*/
/*  display: flex;*/
/*  gap: 9px*/
/*}*/

.btn-sm-f {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .02em;
  cursor: none;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy)
}

.btn-sm-f:hover {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 6px 18px rgba(139, 85, 128, .2)
}

.btn-sm-o {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .02em;
  cursor: none;
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--border)
}

.btn-d-fill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid var(--navy)
}

.btn-d-fill:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 85, 128, .25)
}

.btn-d-fill svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.appt {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 100px 0
}

.appt-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center
}

.ac-item {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.ac-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(139, 85, 128, .07);
  display: flex;
  align-items: center;
  justify-content: center
}

.ac-text p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 2px;
  line-height: 1.55
}

.appt-form {
  background: var(--surface);
  border-radius: 20px;
  padding: 42px;
  box-shadow: 0 20px 64px rgba(89, 59, 103, .07);
  border: 1px solid var(--border)
}

.appt-form h3 {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: -.025em
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all .22s;
  -webkit-appearance: none
}

textarea {
  height: 96px;
  resize: none;
  line-height: 1.65
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23a87faa' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  cursor: none;
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px
}

.btn-submit:hover {
  background: var(--sky);
  box-shadow: 0 12px 32px rgba(139, 85, 128, .25);
  transform: translateY(-1px)
}

.foot-sub {
  margin-top: 26px;
  display: flex;
  gap: 9px
}

.foot-sub input {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #fff;
  font-size: 13.5px;
  padding: 11px 15px;
  flex: 1;
  font-family: var(--font);
  font-weight: 300
}

.foot-sub input::placeholder {
  color: rgba(255, 255, 255, .28)
}

.foot-sub input:focus {
  border-color: rgba(201, 168, 196, .4);
  outline: none
}

.foot-sub button {
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 18px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  white-space: nowrap;
  transition: all .25s
}

.foot-sub button:hover {
  background: var(--sky2)
}

.foot-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .44);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px
}

.foot-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity .2s
}

.foot-links a:hover::before {
  opacity: 1
}

.foot-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.fci-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.fci-ico svg {
  width: 14px;
  height: 14px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.5
}

.fci-txt strong {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  display: block
}

.fci-txt p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .4);
  line-height: 1.55
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 14px
}

.foot-bot-links {
  display: flex;
  gap: 22px
}

.foot-bot-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .32);
  text-decoration: none;
  transition: color .2s
}

.foot-bot-links a:hover {
  color: rgba(255, 255, 255, .75)
}

@media (max-width:1024px) {

  .feat-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .dept-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .doc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .appt-in {
    grid-template-columns: 1fr;
    gap: 50px
  }
}

@media (max-width:768px) {

  .feat-grid,
  .dept-grid,
  .doc-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }
}

/* --- From: 30-careers --- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  overflow: hidden
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 160px 56px 70px;
  text-align: center
}

.ph-title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 16px
}

.ph-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8
}

.ph-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  margin-top: 28px;
  transition: all .28s
}

.ph-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 160, 110, .35)
}

.ph-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.sec-title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 16px
}

.sec-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.82;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px
}

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

.why-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.why-ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.why-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.benefits {
  background: var(--surface)
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.ben-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all .3s
}

.ben-card:hover {
  box-shadow: 0 10px 28px rgba(89, 59, 103, .08)
}

.ben-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(196, 160, 110, .25)
}

.ben-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.ben-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.ben-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7
}

.positions {
  background: #fff
}

.pos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

.pos-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s
}

.pos-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(89, 59, 103, .08);
  border-color: var(--sky)
}

.pos-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}

.pos-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.pos-ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.pos-head h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy)
}

.pos-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.pos-item {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  padding-left: 18px;
  position: relative
}

.pos-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sky);
  font-weight: 700
}

.culture {
  background: var(--surface)
}

.culture p {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 20px
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px
}

.culture-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all .3s
}

.culture-card:hover {
  box-shadow: 0 8px 24px rgba(89, 59, 103, .08)
}

.culture-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 12px
}

.culture-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.culture-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6
}

.application {
  background: #fff
}

.app-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px
}

.app-step {
  position: relative
}

.app-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% + 12px);
  width: 24px;
  height: 2px;
  background: var(--border)
}

.app-step:last-child::after {
  display: none
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .25)
}

.app-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center
}

.app-step p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  text-align: center
}

.apply-form {
  background: var(--surface);
  border-radius: 18px;
  padding: 48px;
  margin-top: 60px
}

.apply-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center
}

.apply-form>p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 36px;
  text-align: center
}

.form-file {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer
}

.alert-box {
  background: linear-gradient(135deg, rgba(233, 30, 99, .08), rgba(240, 98, 146, .08));
  border-left: 4px solid #e91e63;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 32px
}

.alert-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.alert-box h4 svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.alert-box p {
  font-size: 14px;
  font-weight: 400;
  color: #880e4f;
  margin: 0
}

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

  .ben-grid,
  .pos-grid {
    grid-template-columns: 1fr
  }

  .culture-grid,
  .app-steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .app-step::after {
    display: none
  }
}

@media(max-width:768px) {

  .why-grid,
  .culture-grid,
  .app-steps {
    grid-template-columns: 1fr
  }

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

/* --- From: 4-internal-medicine-updated --- */
nav {
  position: fixed;
  /*top: 38px;*/
  left: 0;
  right: 0;
  z-index: 900;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .05)
}

nav.sc {
  top: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .05)
}

.logo-name {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  line-height: 1.1
}

.nav-links a {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mid);
  padding: 9px 14px;
  border-radius: 8px;
  cursor: none;
  text-decoration: none;
  transition: all .2s
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 9px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  margin-left: 6px;
  border: 1px solid var(--navy)
}

.about-dept {
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-visual {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  border-radius: 22px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .2) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5
}

.why-choose {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.why-ico {
  width: 24px;
  height: 24px;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.why-ico svg {
  width: 14px;
  height: 14px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2
}

.why-item p {
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.6
}

.serv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px
}

.serv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all .3s
}

.serv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 28, 53, .08)
}

.serv-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.serv-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.serv-card li {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 4px
}

.serv-card li::before {
  content: '•';
  color: var(--sky);
  font-weight: 700;
  font-size: 18px
}

.dq {
  font-size: 11px;
  font-weight: 500;
  background: var(--surface);
  color: var(--mid);
  padding: 4px 10px;
  border-radius: 100px
}

.btn-sm-f {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: none;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy)
}

.btn-sm-o {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: all .22s;
  display: inline-flex;
  cursor: none;
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--border)
}

.why-choose-us {
  background: var(--surface)
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative
}

.step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 18px rgba(139, 85, 128, .3)
}

.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 10px
}

.step-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

.appt-form h3 {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all .22s
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: none;
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px
}

.foot-logo-n {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85)
}

.foot-col h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 20px
}

/* --- From: 5-doctors-updated --- */
:root {
  --navy: #593b67;
  --navy2: #4a2f56;
  --sky: #8b5580;
  --sky2: #9d6592;
  --mist: #b589ae;
  --aqua: #c9a8c4;
  --gold: #8b5580;
  --gold2: #a87ba6;
  --white: #ffffff;
  --surface: #f8f3f7;
  --surface2: #f1e8f0;
  --border: rgba(89, 59, 103, .1);
  --text: #593b67;
  --mid: #7a5280;
  --muted: #a87faa;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  cursor: none
}

.cur {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--sky2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%)
}

.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 12.5px
}

.tb-left a:hover {
  color: var(--aqua)
}

.tb-left svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.tb-right {
  font-size: 12px;
  color: rgba(255, 255, 255, .45)
}

nav {
  position: fixed;
  /*top: 38px;*/
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 6px 30px rgba(89, 59, 103, .06);
  transition: all .4s
}

.logo-m {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-m svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.5
}

.logo-name {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1
}

.logo-sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted)
}

.nav-links {
  display: flex;
  gap: 2px
}

.nav-links a {
  font-size: 13.5px;
  color: var(--mid);
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--surface)
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 9px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  margin-left: 6px
}

.nav-cta:hover {
  background: var(--sky);
  box-shadow: 0 6px 20px rgba(139, 85, 128, .25)
}

.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2))
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 85, 128, .2), transparent 50%)
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 180px 56px 100px;
  text-align: center
}

.ph-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px)
}

.ph-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.5
}

.ph-pill span {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, .85)
}

.ph-title {
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 18px
}

.ph-desc {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7
}

.ph-btn {
  display: inline-flex;
  gap: 9px;
  background: #fff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid #fff
}

.ph-btn:hover {
  background: var(--sky2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(157, 101, 146, .3)
}

.ph-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5
}

.tag {
  display: inline-flex;
  gap: 9px;
  margin-bottom: 16px
}

.tag-line {
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px
}

.sec-title {
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.03em
}

.intro {
  background: #fff
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center
}

.intro-visual {
  background: linear-gradient(145deg, #e8d4e5, #d4b8d0);
  border-radius: 22px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 85, 128, .2) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5
}

.intro-quote {
  background: rgba(255, 255, 255, .15);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 8px;
  margin-top: 30px;
  backdrop-filter: blur(8px)
}

.intro-quote p {
  font-family: var(--font-alt);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  line-height: 1.7
}

/*.doctors {*/
/*  background: var(--surface)*/
/*}*/

/*.doc-photo {*/
/*  height: 280px;*/
/*  position: relative;*/
/*  background: linear-gradient(150deg, #e8d4e5, #d4b8d0, #c09abc)*/
/*}*/

/*.doc-badge {*/
/*  position: absolute;*/
/*  bottom: 16px;*/
/*  left: 18px;*/
/*  background: var(--sky);*/
/*  color: #fff;*/
/*  border-radius: 7px;*/
/*  padding: 5px 12px;*/
/*  font-size: 11px;*/
/*  font-weight: 600*/
/*}*/

/*.doc-rating {*/
/*  position: absolute;*/
/*  top: 16px;*/
/*  right: 18px;*/
/*  background: rgba(255, 255, 255, .95);*/
/*  padding: 5px 12px;*/
/*  border-radius: 7px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 4px;*/
/*  font-size: 13px;*/
/*  font-weight: 600;*/
/*  color: var(--navy)*/
/*}*/

/*.doc-rating svg {*/
/*  width: 14px;*/
/*  height: 14px;*/
/*  fill: var(--gold);*/
/*  stroke: none*/
/*}*/

/*.doc-info h3 {*/
/*  font-size: 18px;*/
/*  font-weight: 700;*/
/*  color: var(--navy);*/
/*  margin-bottom: 5px*/
/*}*/

.dq {
  font-size: 11px;
  font-weight: 500;
  background: var(--surface);
  color: var(--mid);
  padding: 4px 10px;
  border-radius: 100px
}

.btn-sm-f {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
  display: inline-flex;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy);
  transition: all .22s
}

.btn-sm-f:hover {
  background: var(--sky);
  border-color: var(--sky)
}

.btn-sm-o {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
  display: inline-flex;
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--border);
  transition: all .22s
}

.why-us {
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0 10px
}

.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139, 85, 128, .12), transparent 60%)
}

.cta-in {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 56px
}

.cta-in h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px
}

.cta-in p {
  font-family: var(--font-alt);
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 32px
}

.appt {
  background: var(--surface);
  padding: 100px 0
}

.ac-item {
  display: flex;
  gap: 16px
}

.ac-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(139, 85, 128, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ac-text p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 2px
}

.appt-form {
  background: #fff;
  border-radius: 20px;
  padding: 42px;
  box-shadow: 0 20px 64px rgba(89, 59, 103, .07);
  border: 1px solid var(--border)
}

.appt-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all .22s
}

textarea {
  height: 96px;
  resize: none
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: none;
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px
}

.btn-submit:hover {
  background: var(--sky);
  transform: translateY(-1px)
}

.faqs {
  background: #fff
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all .3s
}

.faq-item:hover {
  border-color: var(--sky);
  box-shadow: 0 8px 24px rgba(89, 59, 103, .06)
}

.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  gap: 10px
}

.faq-q::before {
  content: 'Q';
  width: 28px;
  height: 28px;
  background: var(--sky);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0
}

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  padding-left: 38px
}

.foot-logo {
  display: flex;
  gap: 13px
}

.foot-logo-n {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85)
}

.foot-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 20px
}

.foot-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .44);
  text-decoration: none;
  transition: color .2s
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 30px
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s
}

/* --- From: 6-dr-carole-wehbe-chidiac-updated --- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy2))
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 180px 56px 80px;
  text-align: center
}

.ph-title {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 12px
}

.ph-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 600px;
  margin: 0 auto 36px
}

.ph-btn {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: #fff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid #fff
}

.ph-btn-wa {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .28s;
  border: 1.5px solid #25D366
}

.ph-btn-wa:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .3)
}

.ph-btn-wa svg {
  width: 17px;
  height: 17px;
  fill: #fff;
  flex-shrink: 0
}

.ph-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center
}

.profile {
  padding: 100px 0;
  background: #fff
}

.prof-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: .9fr 2.1fr;
  gap: 50px
}

.sidebar {
  position: sticky;
  top: 140px;
  align-self: start
}

/*.doc-card {*/
/*  background: var(--surface);*/
/*  border: 1px solid var(--border);*/
/*  border-radius: 20px;*/
/*  padding: 32px;*/
/*  text-align: center*/
/*}*/

/*.doc-photo {*/
/*  width: 150px;*/
/*  height: 150px;*/
/*  margin: 0 auto 20px;*/
/*  border-radius: 50%;*/
/*  background: linear-gradient(150deg, #e8d4e5, #d4b8d0, #c09abc);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  border: 3px solid #fff;*/
/*  box-shadow: 0 8px 24px rgba(89, 59, 103, .12)*/
/*}*/

/*.doc-photo svg {*/
/*  width: 70px;*/
/*  height: 70px;*/
/*  stroke: rgba(89, 59, 103, .35);*/
/*  fill: none;*/
/*  stroke-width: .85*/
/*}*/

/*.doc-rating {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: 8px;*/
/*  margin-bottom: 20px*/
/*}*/

/*.doc-rating-num {*/
/*  font-size: 28px;*/
/*  font-weight: 700;*/
/*  color: var(--navy)*/
/*}*/

/*.doc-rating-stars {*/
/*  display: flex;*/
/*  gap: 3px*/
/*}*/

/*.doc-rating-stars svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  fill: var(--gold)*/
/*}*/

/*.doc-rating-text {*/
/*  font-size: 12px;*/
/*  color: var(--muted);*/
/*  margin-top: 4px*/
/*}*/

/*.doc-acts {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 10px;*/
/*  margin-bottom: 28px*/
/*}*/

/*.btn-primary {*/
/*  background: var(--navy);*/
/*  color: #fff;*/
/*  padding: 12px 24px;*/
/*  border-radius: 10px;*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  text-decoration: none;*/
/*  text-align: center;*/
/*  transition: all .28s;*/
/*  border: none*/
/*}*/

/*.btn-primary:hover {*/
/*  background: var(--sky);*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 8px 20px rgba(139, 85, 128, .25)*/
/*}*/

/*.btn-whatsapp {*/
/*  background: #25D366;*/
/*  color: #fff;*/
/*  padding: 12px 24px;*/
/*  border-radius: 10px;*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  text-decoration: none;*/
/*  text-align: center;*/
/*  transition: all .28s;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: 8px*/
/*}*/

/*.btn-whatsapp:hover {*/
/*  background: #20BA5A;*/
/*  transform: translateY(-2px)*/
/*}*/

/*.btn-whatsapp svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  fill: #fff*/
/*}*/

/*.doc-info-list {*/
/*  list-style: none;*/
/*  text-align: left;*/
/*  border-top: 1px solid var(--border);*/
/*  padding-top: 24px*/
/*}*/

/*.doc-info-list li {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: 12px;*/
/*  margin-bottom: 16px;*/
/*  font-size: 14px*/
/*}*/

/*.doc-info-list svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  stroke: var(--sky);*/
/*  fill: none;*/
/*  stroke-width: 1.5;*/
/*  flex-shrink: 0;*/
/*  margin-top: 2px*/
/*}*/

/*.doc-info-list strong {*/
/*  display: block;*/
/*  font-weight: 600;*/
/*  color: var(--navy);*/
/*  margin-bottom: 2px*/
/*}*/

/*.doc-info-list span {*/
/*  color: var(--mid);*/
/*  font-weight: 300;*/
/*  font-size: 13.5px*/
/*}*/

/*.insurance-logos {*/
/*  margin-top: 28px;*/
/*  padding-top: 24px;*/
/*  border-top: 1px solid var(--border)*/
/*}*/

/*.insurance-logos h4 {*/
/*  font-size: 13px;*/
/*  font-weight: 600;*/
/*  color: var(--navy);*/
/*  margin-bottom: 16px;*/
/*  text-align: left*/
/*}*/

/*.ins-grid {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  gap: 10px*/
/*}*/

/*.ins-logo {*/
/*  background: #fff;*/
/*  border: 1px solid var(--border);*/
/*  border-radius: 8px;*/
/*  padding: 8px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 11px;*/
/*  font-weight: 500;*/
/*  color: var(--mid);*/
/*  min-height: 40px*/
/*}*/

.main-content {
  background: #fff
}

.sec-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.sec-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mid)
}

.about-sec {
  margin-bottom: 60px
}

.clinical-int {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px
}

.clinical-list {
  list-style: none
}

.clinical-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  color: var(--mid)
}

.clinical-list li:last-child {
  border-bottom: none
}

.clinical-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

.edu-list {
  list-style: none
}

.edu-item {
  padding: 20px;
  background: var(--surface);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border)
}

.edu-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.edu-item p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 60px 0
}

.stat-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #fff
}

.stat-card h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.03em
}

.stat-card p {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .75)
}

.expertise {
  background: var(--surface);
  padding: 60px 0;
  margin: 60px -56px;
  width: calc(100% + 112px)
}

.expertise-in {
  max-width: 100%;
  padding: 0 56px
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px
}

.exp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .3s
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.exp-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.exp-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6
}

.care-stages {
  margin: 60px 0
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px
}

.stage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s
}

.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 59, 103, .08)
}

.stage-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky2), var(--navy));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.stage-ico svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

.stage-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.stage-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7
}

.cta-banner {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  padding: 80px 56px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0
}

.cta-banner h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2
}

.cta-banner p {
  font-family: var(--font-alt);
  font-size: 17px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .85);
  max-width: 700px;
  margin: 0 auto
}

.appt {
  background: var(--surface);
  padding: 80px 0;
  margin: 60px -56px;
  width: calc(100% + 112px)
}

.appt-in {
  max-width: 100%;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px
}

.faqs {
  margin-top: 60px
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  gap: 10px
}

/* --- From: 7-dr-bhadrish-vallabh --- */
.ph-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 600px;
  margin: 0 auto 36px
}

/*.doc-photo {*/
/*  width: 150px;*/
/*  height: 150px;*/
/*  margin: 0 auto 20px;*/
/*  border-radius: 50%;*/
/*  background: linear-gradient(150deg, #e8d4e5, #d4b8d0, #c09abc);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  border: 3px solid #fff;*/
/*  box-shadow: 0 8px 24px rgba(89, 59, 103, .12)*/
/*}*/

/*.doc-photo svg {*/
/*  width: 70px;*/
/*  height: 70px;*/
/*  stroke: rgba(89, 59, 103, .35);*/
/*  fill: none;*/
/*  stroke-width: .85*/
/*}*/

.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all .28s;
  border: none
}

.ins-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  min-height: 40px
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: all .22s
}

/* --- From: 8-dr-juliana-korth --- */
/* --- From: 9-dr-valeria-risoli --- */
.ph-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  max-width: 640px;
  margin: 0 auto 36px
}

/* --- From: 9-reem-matar-alketbi --- */
/*.doc-photo-fallback {*/
/*  width: 70px;*/
/*  height: 70px;*/
/*  stroke: rgba(89, 59, 103, .35);*/
/*  fill: none;*/
/*  stroke-width: .85;*/
/*  display: none*/
/*}*/