/* ============================================================
   Ramakrishna Hospital — Homepage Styles
   Breakpoints:
     Desktop : 1100px and up
     Tablet  : 768px – 1099px
     Mobile  : below 768px
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #0a1f4d;
  --royal:       #09318A;
  --blue:        #2a7fd4;
  --blue-dark:   #1f6bb8;
  --sky:         #7fb0e6;
  --gold:        #EFBB4B;
  --gold-light:  #f3c869;
  --gold-dark:   #e0a72e;
  --teal:        #0e9c8f;
  --teal-bright: #1aa39a;
  --green:       #25d366;

  --ink:         #0d2a52;
  --body:        #4a5a6a;
  --muted:       #52617a;
  --faint:       #7387a3;

  --bg-soft:     #F4F7FC;
  --bg-softer:   #f7fafd;
  --bg-card:     #f0f6fd;

  --border:      #e4ebf5;
  --border-blue: #e0ebf8;

  --radius:      20px;
  --shadow-card: 0 22px 46px -26px rgba(13, 42, 82, .35);

  --font: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--body);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-dark); }

h1, h2, h3 { color: var(--ink); letter-spacing: -.02em; text-wrap: balance; }

.container { max-width: 1600px; margin: 0 auto; padding: 0 56px; }
.container--narrow { max-width: 1432px; }

.desktop-br { display: inline; }

/* ---------- Text helpers ---------- */
.text-blue { color: var(--blue); }
.text-blue-strong { color: var(--blue); font-weight: 800; }
.text-sky { color: var(--sky); }
.text-gold { color: var(--gold); }
.text-bold { font-weight: 700; }
.text-light-blue { color: #6db4f5; }

.text-gold-gradient {
  background: linear-gradient(180deg, #f8d98a 0%, var(--gold) 45%, #c98f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gold-gradient-2 {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
}
.btn--lg { height: 56px; padding: 0 32px; font-size: 16.5px; }

.btn--gold { background: var(--gold); color: #000000; }
.btn--gold:hover {
  background: var(--gold-light);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -14px rgba(239, 187, 75, .7);
}

.btn--whatsapp { background: var(--green); color: #ffffff; }
.btn--whatsapp:hover { color: #ffffff; filter: brightness(1.06); transform: translateY(-3px); }

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .32);
  color: #ffffff;
}
.btn--outline:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .6); color: #ffffff; }

.btn--blue { background: var(--blue); color: #ffffff; width: 100%; height: 46px; }
.btn--blue:hover {
  background: var(--blue-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(42, 127, 212, .6);
}

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



#inquiry { scroll-margin-top: 120px; } 


/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e8f1fc;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--royal);
}
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

.eyebrow--gold {
  background: transparent;
  padding: 0;
  color: var(--gold);
  font-size: 12px;
}
.eyebrow--gold i { width: 7px; height: 7px; background: var(--gold); }

.section-head h2 { font-size: 44px; line-height: 1.14; font-weight: 800; }
.section-head p { margin-top: 18px; font-size: 17px; line-height: 1.65; color: var(--muted); }
.section-head--center { text-align: center; max-width: 900px; margin: 0 auto; }
.section-head--light h2 { color: #ffffff; }
.section-head--light p { color: #c3cee0; }

/* ---------- Scroll-reveal ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}
[data-reveal="left"]  { transform: translateX(-90px); }
[data-reveal="right"] { transform: translateX(90px); }
[data-reveal].is-in   { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Decorative section backdrops ---------- */
.backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bd-glow { position: absolute; border-radius: 50%; }
.bd-plus { position: absolute; font-weight: 800; line-height: 1; }
.bd-dots { position: absolute; }
.bd-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.bd-waves { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.bd-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .14); }
.bd-ecg { position: absolute; bottom: -10px; right: 8%; opacity: .5; }

/* Glow variants */
.bd-glow--tr-blue  { top: -140px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(42, 127, 212, .10), transparent 68%); }
.bd-glow--bl-teal  { bottom: -160px; left: -80px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(26, 163, 154, .10), transparent 70%); }
.bd-glow--tl-blue  { top: -140px; left: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(42, 127, 212, .09), transparent 68%); }
.bd-glow--br-gold  { bottom: -160px; right: -90px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(239, 187, 75, .10), transparent 70%); }
.bd-glow--t-teal   { top: -120px; right: 20%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(26, 163, 154, .08), transparent 68%); }
.bd-glow--bl-blue  { bottom: -140px; left: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(42, 127, 212, .08), transparent 70%); }
.bd-glow--tl-teal  { top: -130px; left: -90px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(26, 163, 154, .08), transparent 68%); }
.bd-glow--b-blue   { bottom: -150px; right: 22%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(42, 127, 212, .08), transparent 70%); }
.bd-glow--tr-gold  { top: -140px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(239, 187, 75, .09), transparent 68%); }
.bd-glow--t-blue   { top: -140px; left: 24%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(42, 127, 212, .08), transparent 68%); }
.bd-glow--br-teal  { bottom: -150px; right: -90px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(26, 163, 154, .09), transparent 70%); }
.bd-glow--cta-tr   { top: -120px; right: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 68%); }
.bd-glow--cta-b    { bottom: -180px; left: 38%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(8, 24, 58, .32), transparent 70%); }
.bd-glow--store-t  { top: -180px; left: 50%; transform: translateX(-50%); width: 720px; height: 360px; background: radial-gradient(circle, rgba(239, 187, 75, .12), transparent 70%); }
.bd-glow--xray-tr  { top: -90px; right: -70px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(42, 127, 212, .16), transparent 70%); }
.bd-glow--xray-bl  { bottom: -110px; left: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(26, 163, 154, .14), transparent 70%); }

/* Dot-grid variants */
.bd-dots--problems {
  inset: 0;
  background-image: radial-gradient(rgba(42, 127, 212, .09) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: .6;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 75%);
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.bd-dots--spec {
  top: 0; right: 0;
  width: 36%; height: 60%;
  background-image: radial-gradient(rgba(42, 127, 212, .12) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at top right, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at top right, #000 20%, transparent 70%);
}
.bd-dots--xray {
  top: 24px; left: 24px;
  width: 120px; height: 120px;
  background-image: radial-gradient(rgba(42, 127, 212, .22) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: .7;
}
.bd-dots--store-l,
.bd-dots--store-r {
  top: 0;
  width: 44%; height: 100%;
  background-size: 24px 24px;
  opacity: .7;
}
.bd-dots--store-l {
  left: 0;
  background-image: radial-gradient(rgba(42, 127, 212, .16) 1.5px, transparent 1.5px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
}
.bd-dots--store-r {
  right: 0;
  background-image: radial-gradient(rgba(26, 163, 154, .16) 1.5px, transparent 1.5px);
  -webkit-mask-image: linear-gradient(270deg, #000 0%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, transparent 100%);
}

/* Plus-mark positions per section */
.problems .bd-plus--1 { top: 52px; right: 16%; color: rgba(42, 127, 212, .18); font-size: 34px; }
.problems .bd-plus--2 { top: 150px; right: 10%; color: rgba(26, 163, 154, .2); font-size: 22px; }
.problems .bd-plus--3 { bottom: 110px; left: 6%; color: rgba(239, 187, 75, .4); font-size: 30px; }
.problems .bd-plus--4 { top: 44%; left: 3%; color: rgba(42, 127, 212, .16); font-size: 24px; }
.about .bd-plus--1 { top: 40px; right: 8%; color: rgba(42, 127, 212, .16); font-size: 30px; }
.about .bd-plus--2 { bottom: 70px; left: 5%; color: rgba(26, 163, 154, .18); font-size: 24px; }
.specialities .bd-plus--1 { top: 60px; left: 7%; color: rgba(239, 187, 75, .35); font-size: 28px; }
.specialities .bd-plus--2 { bottom: 80px; right: 5%; color: rgba(42, 127, 212, .16); font-size: 24px; }
.xray .bd-plus--1 { top: 40%; right: 6%; color: rgba(239, 187, 75, .4); font-size: 26px; }
.xray .bd-plus--2 { top: 22%; left: 44%; color: rgba(42, 127, 212, .24); font-size: 20px; }
.insurance .bd-plus--1 { top: 50px; right: 7%; color: rgba(26, 163, 154, .18); font-size: 28px; }
.insurance .bd-plus--2 { bottom: 90px; left: 5%; color: rgba(42, 127, 212, .16); font-size: 24px; }
.testimonials .bd-plus--1 { top: 64px; left: 8%; color: rgba(42, 127, 212, .16); font-size: 28px; }
.testimonials .bd-plus--2 { bottom: 70px; right: 6%; color: rgba(26, 163, 154, .18); font-size: 24px; }
.cta-banner .bd-plus--1 { top: 40px; right: 16%; color: rgba(255, 255, 255, .14); font-size: 32px; }
.cta-banner .bd-plus--2 { bottom: 60px; right: 32%; color: rgba(239, 187, 75, .30); font-size: 24px; }
.cta-banner .bd-plus--3 { top: 56%; left: 3%; color: rgba(255, 255, 255, .12); font-size: 26px; }
.cta-banner .bd-ring { top: -70px; left: 18%; width: 240px; height: 240px; }
.store-range .bd-plus--1 { top: 52px; right: 14%; color: rgba(42, 127, 212, .18); font-size: 32px; }
.store-range .bd-plus--2 { top: 40%; left: 4%; color: rgba(26, 163, 154, .22); font-size: 24px; }
.store-range .bd-plus--3 { bottom: 64px; left: 16%; color: rgba(239, 187, 75, .35); font-size: 28px; }
.store-range .bd-plus--4 { top: 64%; right: 3%; color: rgba(42, 127, 212, .16); font-size: 22px; }
.faq .bd-plus--1 { top: 56px; right: 8%; color: rgba(239, 187, 75, .35); font-size: 28px; }
.faq .bd-plus--2 { bottom: 80px; left: 6%; color: rgba(42, 127, 212, .16); font-size: 24px; }

/* ---------- Keyframes ---------- */
@keyframes ctaSpin  { to { transform: rotate(360deg); } }
@keyframes insFloat { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-7px); } }
@keyframes pinPulse {
  0%   { box-shadow: 0 0 0 0 rgba(18, 32, 63, .35); }
  70%  { box-shadow: 0 0 0 9px rgba(18, 32, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 32, 63, 0); }
}

/* ============================================================
   HEADER — utility bar
   ============================================================ */
.utility-bar { background: var(--navy); }

.utility-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}
.utility-bar__links a { color: #ffffff; padding: 0 24px; }
.utility-bar__links a:hover { color: var(--gold-light); }
.utility-bar__divider { width: 1px; height: 18px; background: rgba(255, 255, 255, .35); }

/* Mobile-only email (hidden on desktop; the link list already includes it) */
.utility-bar__email { display: none; font-size: 12px; font-weight: 700; color: #ffffff; }

.utility-bar__socials {
  position: absolute;
  right: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.social {
  width: 36px; height: 36px;
  border-radius: 9px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.social:hover { color: #ffffff; transform: translateY(-2px); }
.social--facebook  { background: #1877f2; }
.social--instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social--youtube   { background: #ff0000; }
.social--whatsapp  { background: var(--green); }

/* ============================================================
   HEADER — main navigation
   ============================================================ */
.main-nav { background: #ffffff; position: relative; z-index: 40; }

.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}

.main-nav__brand img { height: 100px; width: auto; }

.main-nav__right { display: flex; align-items: center; gap: 34px; }

.main-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav__links a { color: #1a1a1a; }
.main-nav__links a:hover,
.main-nav__links a.is-active { color: var(--blue); }

.main-nav__appointment { font-weight: 600; }

.main-nav__emergency { display: flex; align-items: center; gap: 12px; }
.main-nav__emergency-icon { font-size: 36px; color: var(--teal-bright); line-height: 1; }
.main-nav__emergency-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #1a1a1a;
  white-space: nowrap;
}
.main-nav__emergency-number {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.main-nav__emergency-number:hover { color: var(--blue); }

/* Mobile-only nav controls (hidden on desktop) */
.main-nav__call,
.main-nav__hamburger { display: none; }

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e6edf6;
  border-bottom: 1px solid #e6edf6;
  box-shadow: 0 24px 44px -24px rgba(13, 42, 82, .4);
  padding: 8px 16px 16px;
  flex-direction: column;
}
.mobile-menu a {
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 1px solid #eef2f8;
}
.mobile-menu a.is-active { color: var(--blue); font-weight: 800; }
.mobile-menu__appointment {
  margin-top: 10px;
  border-bottom: none;
  height: 48px;
  color: #000000;
}
.main-nav.is-open .mobile-menu { display: flex; }

.main-nav__hamburger .icon-close { display: none; }
.main-nav.is-open .main-nav__hamburger .icon-menu  { display: none; }
.main-nav.is-open .main-nav__hamburger .icon-close { display: block; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
 
   height: clamp(440px, calc(100vh - 220px), 640px);
  background: var(--navy);
  overflow: hidden;
}

.hero__img {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24%);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9, 25, 58, .94) 0%, rgba(9, 25, 58, .82) 34%, rgba(9, 25, 58, .25) 62%, rgba(9, 25, 58, 0) 82%);
}

.hero__dots-bg {
  position: absolute;
  top: 0; left: 0;
  width: 34%; height: 64%;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at top left, #000 12%, transparent 62%);
  mask-image: radial-gradient(ellipse at top left, #000 12%, transparent 62%);
  opacity: .5;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}

.hero__slides {
  position: relative;
  max-width: 660px;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(110%);
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}
.hero-slide.is-active { transform: translateX(0); pointer-events: auto; }
.hero-slide.is-left   { transform: translateX(-110%); }

/* Slide 1 */
.hero-slide__headline {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.028em;
}
.hero-slide__sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.65;
  color: #dbe6f8;
  max-width: 540px;
}
.hero-slide__sub-em { color: var(--gold-light); font-weight: 700; }
.hero-slide__ctas { display: flex; align-items: center; gap: 16px; margin-top: 32px; }

/* Slide 2 */
.hero-slide__years { display: flex; align-items: flex-end; gap: 20px; }
.hero-slide__years-num {
  font-size: 150px;
  line-height: .85;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.03em;
}
.hero-slide__years-word {
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 10px;
}
.hero-slide__years-line {
  margin-top: 18px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.01em;
}
.hero-slide__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 26px;
  padding: 16px 34px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 44px -20px rgba(8, 24, 58, .5);
  font-size: 30px;
  font-weight: 800;
  font-style: italic;
  color: var(--royal);
  letter-spacing: -.01em;
}
.hero-slide__badge sup { font-size: 15px; }

/* Slide 3 */
.hero-slide__tpa-headline {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #ffffff;
}
.hero-slide__underline { display: flex; align-items: center; gap: 6px; margin-top: 14px; }
.hero-slide__underline span { width: 44px; height: 4px; border-radius: 99px; background: var(--blue); }
.hero-slide__underline i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.hero-slide__tpa-sub { margin-top: 14px; font-size: 19px; line-height: 1.5; color: #dbe6f8; }

.tpa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  max-width: 640px;
}
.tpa-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px -14px rgba(8, 24, 58, .55);
}
.tpa-card__logo {
  flex: 0 0 92px;
  font-weight: 800;
  border-right: 1px solid #e2e8f2;
  padding-right: 12px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tpa-card__name { font-size: 13.5px; line-height: 1.3; font-weight: 700; color: #1c2b45; }

.tpa-card__logo--star     { font-size: 17px; color: #0f5bb5; font-style: italic; letter-spacing: .02em; }
.tpa-card__logo--navi     { font-size: 17px; color: #1a1a1a; flex-direction: row; }
.tpa-card__logo--navi em  { color: #00b386; font-style: normal; }
.tpa-card__logo--icici    { font-size: 14px; line-height: 1.15; color: #b02a30; flex-direction: row; flex-wrap: wrap; }
.tpa-card__logo--icici em { color: #f47920; font-style: normal; }
.tpa-card__logo--care em {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 6px;
  background: #ffd23f;
  font-size: 15px;
  font-weight: 800;
  font-style: normal;
  color: #1c2b45;
  letter-spacing: .04em;
}
.tpa-card__logo--icicipru    { font-size: 13px; line-height: 1.15; color: #b02a30; }
.tpa-card__logo--icicipru em { font-style: normal; background: linear-gradient(90deg, #e2574c, #f47920); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tpa-card__logo--acko    { font-size: 18px; color: #5c2d91; letter-spacing: .01em; flex-direction: row; }
.tpa-card__logo--acko em { color: #3ecf8e; font-style: normal; }
.tpa-card__logo--bajaj    { font-size: 14px; line-height: 1.15; color: #0f5bb5; }
.tpa-card__logo--bajaj em { color: #1c2b45; font-style: normal; }
.tpa-card__logo--hdfc {
  font-size: 12.5px;
  line-height: 1.15;
  color: #ffffff;
  background: #e2231a;
  border-radius: 4px;
  padding: 3px 8px;
  flex: 0 0 auto;
  margin-right: 12px;
  align-self: center;
  border-right: none;
}

/* Dots */
.hero__dots {
  position: absolute;
  left: 56px;
  bottom: 24px;
  display: flex;
  gap: 10px;
}
.hero__dots button {
  width: 34px; height: 5px;
  border: none;
  border-radius: 99px;
  background: rgba(255, 255, 255, .35);
  transition: background .3s ease;
  padding: 0;
}
.hero__dots button.is-active { background: var(--gold); }

/* ============================================================
   Stats strip (overlaps hero)
   ============================================================ */
.stats-strip {
  position: relative;
  max-width: 1280px !important;
  margin: 0 auto;
  padding: 0 56px 8px;
}

.stats-strip__card {
  position: relative;
  margin-top: -56px;
  background: #f2f7fd;
  border: 1px solid #e2ecf8;
  border-radius: 22px;
  box-shadow: 0 40px 80px -40px rgba(13, 42, 82, .45);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 2;
}
/* Dotted texture fading from the top, as in the design */
.stats-strip__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(42, 127, 212, .12) 1.3px, transparent 1.3px);
  background-size: 24px 24px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 78%);
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 78%);
  pointer-events: none;
}

.stat-cell { position: relative; padding: 24px 36px; transition: background .25s ease; }
.stat-cell + .stat-cell { border-left: 1px solid #e2ecf8; }
.stat-cell:hover { background: rgba(42, 127, 212, .06); }

.stat-cell__label {
  font-size: 16px;
  font-weight: 700;
  color: #3a5170;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2ecf8;
  margin-bottom: 14px;
}
.stat-cell__num-row { display: flex; align-items: center; gap: 16px; }
.stat-cell__bar { width: 6px; height: 44px; border-radius: 3px; }
.stat-cell__bar--gold { background: var(--gold); }
.stat-cell__bar--blue { background: var(--blue); }
.stat-cell__bar--teal { background: var(--teal); }
.stat-cell__num {
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}
.stat-cell:hover .stat-cell__num { color: var(--blue); transform: translateY(-3px); }
.stat-cell__desc { margin-top: 14px; font-size: 15px; line-height: 1.5; color: var(--faint); }

/* ============================================================
   2. PATIENT PROBLEMS
   ============================================================ */
.problems {
  position: relative;
  background: var(--bg-softer);
  padding: 56px 0 64px;
  overflow: hidden;
}

.problems .container { position: relative; }
.problems .section-head { margin-bottom: 48px; }

.problems__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.concern-card {
  display: flex;
  flex-direction: column;
  border: 3px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 44px -32px rgba(13, 42, 82, .5);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.concern-card--down {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(180deg, var(--royal) 0%, rgba(42, 127, 212, .45) 55%, rgba(111, 179, 240, .12) 100%) border-box;
}
.concern-card--up {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(180deg, rgba(111, 179, 240, .12) 0%, rgba(42, 127, 212, .45) 45%, var(--royal) 100%) border-box;
}
.concern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 62px -26px rgba(13, 42, 82, .64);
}

.concern-card__img {
  height: 190px;
  background-size: cover;
  background-position: center top;
}
.concern-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 26px;
  flex: 1;
}
.concern-card__body h3 { font-size: 17px; font-weight: 800; line-height: 1.35; }
.concern-card__body p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   3. ABOUT HOSPITAL
   ============================================================ */
.about {
  position: relative;
  background: var(--bg-soft);
  padding: 48px 0;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 72px;
  align-items: center;
}

.about__visual { position: relative; }
.about__visual > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 30px 60px -28px rgba(13, 42, 82, .35);
}

.rating-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 20px 24px;
  box-shadow: 0 26px 52px -20px rgba(9, 49, 138, .6);
  min-width: 216px;
}
.rating-card__row { display: flex; align-items: center; gap: 12px; }
.rating-card__avatars { display: flex; }
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
}
.avatar + .avatar { margin-left: -10px; }
.avatar--blue { background: linear-gradient(135deg, #4a8fd6, var(--blue)); }
.avatar--teal { background: linear-gradient(135deg, var(--teal-bright), #0e7a73); }
.avatar--gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }

.rating-card__reviews { font-size: 11.5px; font-weight: 600; color: #33465f; line-height: 1.35; }
.rating-card__stars { margin-top: 12px; color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.rating-card__years { margin-top: 14px; display: flex; align-items: center; gap: 9px; }
.rating-card__years-num { font-size: 32px; font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--royal); }
.rating-card__years-label { font-size: 12.5px; font-weight: 700; line-height: 1.3; color: #33465f; }

.about__content h2 { font-size: 36px; line-height: 1.14; font-weight: 800; }
.about__content p { margin-top: 12px; font-size: 16px; line-height: 1.6; }
.about__lead { font-size: 19px !important; line-height: 1.4 !important; font-weight: 800; color: var(--ink); margin-top: 16px !important; }
.about__question { font-size: 17px !important; line-height: 1.4 !important; font-weight: 800; color: var(--blue); }
.about__quote {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 4px solid var(--gold);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
}

/* ============================================================
   4. SPECIALITIES
   ============================================================ */
.specialities {
  position: relative;
  background: #ffffff;
  padding: 48px 0;
  overflow: hidden;
}

.specialities__head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
}
.specialities__head h2 { font-size: 42px; line-height: 1.16; font-weight: 800; }
.specialities__head p { font-size: 17px; line-height: 1.65; font-weight: 600; padding-bottom: 6px; }

.specialities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.spec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.spec-card h3 { font-size: 18px; font-weight: 800; line-height: 1.3; transition: color .25s ease; }
.spec-card p { font-size: 14.5px; font-weight: 500; color: var(--muted); line-height: 1.55; transition: color .25s ease; }

.spec-card__arrow {
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dbe7f5;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.spec-card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: #e8f1fc;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease;
}

.spec-card:not(.spec-card--explore):hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(42, 127, 212, .55);
}
.spec-card:not(.spec-card--explore):hover h3 { color: #ffffff; }
.spec-card:not(.spec-card--explore):hover p { color: rgba(255, 255, 255, .85); }
.spec-card:not(.spec-card--explore):hover .spec-card__icon { background: #ffffff; color: var(--blue); }
.spec-card:not(.spec-card--explore):hover .spec-card__arrow { background: #ffffff; border-color: #ffffff; color: var(--blue); }

/* Explore-more card */
.spec-card--explore {
  justify-content: space-between;
  gap: 20px;
  background: var(--royal);
  border-color: var(--royal);
  overflow: hidden;
}
.spec-card--explore:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(9, 49, 138, .55); }

.spec-explore__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 70%);
}
.spec-explore__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .5;
  -webkit-mask-image: linear-gradient(160deg, #000, transparent 70%);
  mask-image: linear-gradient(160deg, #000, transparent 70%);
}
.spec-explore__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.spec-explore__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-explore__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(239, 187, 75, .18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.spec-explore__badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.spec-explore__bottom { position: relative; }
.spec-explore__bottom h3 { font-size: 20px; font-weight: 800; color: #ffffff; line-height: 1.25; }
.spec-explore__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.spec-explore__tags span {
  padding: 5px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  color: #dbe6fb;
  font-size: 12px;
  font-weight: 700;
}
.spec-explore__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}
.spec-explore__more-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   5. MOBILE X-RAY
   ============================================================ */
.xray { position: relative; background: #ffffff; padding: 48px 0; overflow: hidden; }

.xray__panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #e7f1fd, #f4faff);
  border: 1px solid #dcebfb;
  border-radius: 32px;
  padding: 44px 48px;
  overflow: hidden;
}

.xray__content { position: relative; z-index: 1; }
.xray__content h2 { margin-top: 16px; font-size: 46px; line-height: 1.08; font-weight: 800; letter-spacing: -.03em; }
.xray__italic { font-weight: 400; font-style: italic; color: var(--blue); }

.xray__subtitle {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
}
.xray__subtitle-line { width: 38px; height: 2px; background: var(--blue); flex-shrink: 0; }

.xray__para { margin-top: 12px; font-size: 15.5px; line-height: 1.62; color: var(--muted); }
.xray__para strong { color: var(--ink); font-weight: 800; }
.xray__para--lead { margin-top: 22px; font-size: 17px; color: #3a4a5a; }
.xray__highlight {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-size: 16.5px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--ink);
}
.xray__closing {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
  font-style: italic;
  font-weight: 600;
  color: var(--blue);
}

/* Visual side */
.xray__visual {
  position: relative;
  z-index: 1;
  padding-left: 52px;
  min-height: 440px;
}
.xray__side-shape {
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 118px;
  border-radius: 5px;
  background: linear-gradient(165deg, var(--navy), var(--royal));
  box-shadow: 0 30px 60px -28px rgba(9, 49, 138, .55);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xray__side-shape span {
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}
.xray__main-img {
  position: relative;
  z-index: 1;
  margin-left: 46px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 34px 66px -30px rgba(13, 42, 82, .5);
}
.xray__main-img img { width: 100%; height: 384px; object-fit: cover; background: #dfe6ee; }

.xray__secondary-img {
  position: absolute;
  z-index: 2;
  right: -6px; bottom: -26px;
  width: 210px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 28px 54px -22px rgba(13, 42, 82, .55);
}
.xray__secondary-img img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; background: #dfe6ee; }

.xray__chip {
  position: absolute;
  z-index: 3;
  top: 8px; right: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--royal);
  box-shadow: 0 22px 44px -18px rgba(9, 49, 138, .55);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .02em;
}
.xray__chip i { width: 8px; height: 8px; border-radius: 50%; background: #37c9bd; }

/* ============================================================
   6. TECHNOLOGY
   ============================================================ */
.technology {
  position: relative;
  background: var(--navy);
  padding: 48px 0;
  overflow: hidden;
}
.technology__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.technology .container { position: relative; }

.technology__cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.tech-card { display: flex; flex-direction: column; }
.tech-card__title {
  text-align: center;
  padding: 16px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #3aa6ea);
  box-shadow: 0 18px 34px -20px rgba(42, 127, 212, .7);
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #ffffff;
}
.tech-card__list {
  flex: 1;
  margin-top: -14px;
  padding: 34px 22px 26px;
  border-radius: 16px;
  background: #f3f7fc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tech-card__list li {
  position: relative;
  padding-left: 33px;
  font-size: 14px;
  line-height: 1.5;
  color: #33465f;
}
.tech-card__list li strong { color: var(--ink); font-weight: 700; }
.tech-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--royal);
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technology__closing {
  margin-top: 40px;
  text-align: center;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
  color: #ffffff;
}
.technology__tagline {
  margin-top: 14px;
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #dbe6f8;
}

/* ============================================================
   7. INSURANCE
   ============================================================ */
.insurance { position: relative; background: #ffffff; padding: 36px 0; overflow: hidden; }

.insurance__panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4fc 0%, #dce7f7 60%, #cddcf1 100%);
  border: 1px solid #dbe6f5;
  min-height: 380px;
}

.insurance__copy {
  position: absolute;
  top: 40px; left: 56px;
  max-width: 340px;
  z-index: 2;
}
.insurance__eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .2em;
  color: #7c93b8;
  text-transform: uppercase;
}
.insurance__copy h2 { margin-top: 16px; font-size: 38px; line-height: 1.1; font-weight: 800; letter-spacing: -.025em; }
.insurance__sub { margin-top: 16px; font-size: 16px; line-height: 1.6; color: #48597a; }
.insurance__sub strong { color: var(--ink); }

.insurance__map {
  position: absolute;
  top: 50%; left: 64%;
  transform: translate(-50%, -50%);
  width: 620px; height: 300px;
  pointer-events: none;
}
.insurance__map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#7ba3d6 1.5px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(120% 150% at 50% 120%, #000 42%, transparent 66%);
  mask-image: radial-gradient(120% 150% at 50% 120%, #000 42%, transparent 66%);
}
.insurance__map-svg { position: relative; width: 100%; height: 100%; }

/* Floating pins */
.ins-pin {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  animation: insFloat 5s ease-in-out infinite;
}
.ins-pin span {
  padding: 9px 16px;
  border-radius: 12px;
  background: #12203f;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 14px 26px -14px rgba(9, 20, 40, .6);
}
.ins-pin i { width: 1.5px; height: 26px; background: #93aed3; }
.ins-pin b {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #12203f;
  border: 2px solid #ffffff;
  margin-top: -1px;
  animation: pinPulse 2.6s ease-out infinite;
}

.ins-pin--1 { top: 11%; left: 53%; animation-delay: 0s; }
.ins-pin--2 { top: 15%; left: 80%; animation-delay: .6s; }
.ins-pin--3 { top: 35%; left: 63%; animation-delay: 1.2s; }
.ins-pin--4 { top: 40%; left: 88%; animation-delay: .3s; }
.ins-pin--5 { top: 53%; left: 45%; animation-delay: .9s; }
.ins-pin--6 { top: 57%; left: 74%; animation-delay: 1.5s; }
.ins-pin--7 { top: 73%; left: 57%; animation-delay: .4s; }
.ins-pin--8 { top: 77%; left: 83%; animation-delay: 1s; }

/* Mobile pill list (hidden on desktop) */
.insurance__pills { display: none; }

.insurance__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.insurance__cta-wrap p { text-align: center; font-size: 17px; line-height: 1.5; }
.insurance__cta-wrap strong { color: var(--ink); font-weight: 800; }
.insurance__cta { box-shadow: 0 22px 44px -18px rgba(37, 211, 102, .55); }

/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
.testimonials { position: relative; background: var(--bg-soft); padding: 48px 0; overflow: hidden; }

.testimonials__carousel { position: relative; margin-top: 48px; overflow: hidden; }

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.t-card {
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .35s ease, transform .35s ease;
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -26px rgba(13, 42, 82, .4); }

.t-card__text { font-size: 16.5px; line-height: 1.7; color: #33465f; flex: 1; }
.t-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #eef2f8;
}
.t-card__person { display: flex; align-items: center; gap: 13px; }
.t-card__avatar {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
}
.t-card__person strong { display: block; font-size: 15.5px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.t-card__person span { display: block; font-size: 13px; font-weight: 600; color: #8a97a8; margin-top: 1px; }
.t-card__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; flex-shrink: 0; }

/* Accent variants */
.t-card--blue   { border-top-color: #2a7fd4; }
.t-card--blue   .t-card__avatar { background: #e8f1fc; color: #2a7fd4; }
.t-card--teal   { border-top-color: #0e9c8f; }
.t-card--teal   .t-card__avatar { background: #e2f5f2; color: #0e9c8f; }
.t-card--gold   { border-top-color: #e0a72e; }
.t-card--gold   .t-card__avatar { background: #fcf2dd; color: #e0a72e; }
.t-card--purple { border-top-color: #7c5bd6; }
.t-card--purple .t-card__avatar { background: #efeafc; color: #7c5bd6; }
.t-card--pink   { border-top-color: #d46a8f; }
.t-card--pink   .t-card__avatar { background: #fce9f0; color: #d46a8f; }

.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.t-nav {
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, filter .2s ease;
}
.t-nav--prev { background: #ffffff; border: 1px solid #d4deec; color: var(--ink); }
.t-nav--prev:hover { background: var(--bg-card); border-color: var(--blue); }
.t-nav--next {
  background: var(--royal);
  border: 1px solid var(--royal);
  color: #ffffff;
  box-shadow: 0 14px 28px -12px rgba(9, 49, 138, .55);
}
.t-nav--next:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ============================================================
   9. CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--royal);
  padding: 40px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 68%);
  pointer-events: none;
}

.cta-banner__split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 44px 90px -40px rgba(0, 0, 0, .6);
}

.cta-banner__copy {
  position: relative;
  background: var(--navy);
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-banner__copy h2 {
  margin-top: 14px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #ffffff;
}
.cta-banner__quote { margin-top: 14px; font-size: 17px; line-height: 1.45; font-weight: 700; color: var(--gold); }
.cta-banner__para { margin-top: 12px; font-size: 15.5px; line-height: 1.6; color: #c3cee0; max-width: 440px; }
.cta-banner__para strong { color: #ffffff; }
.cta-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.cta-banner__buttons .btn--gold { color: var(--navy); font-weight: 800; }

.cta-banner__contacts { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 22px; }
.cta-banner__contacts span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #8fa3ca;
  text-transform: uppercase;
}
.cta-banner__contacts a { display: block; font-size: 18px; font-weight: 800; color: #ffffff; }
.cta-banner__contacts a:hover { color: var(--gold-light); }

.cta-banner__photo { position: relative; background: var(--ink); }
.cta-banner__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 77, .55), transparent 30%);
}

/* Rotating badge */
.cta-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 20px 44px -16px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.cta-badge__ring { animation: ctaSpin 22s linear infinite; }
.cta-badge__ring text { font-size: 11px; font-weight: 800; fill: var(--ink); }
.cta-badge__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   10. HEALTHCARE STORE
   ============================================================ */
.store { position: relative; background: #ffffff; padding: 48px 0; overflow: hidden; }

.store__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.store__visual { position: relative; }
.store__frame {
  border-radius: 26px;
  overflow: hidden;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 34px 68px -32px rgba(13, 42, 82, .4);
}
.store__frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  background: #dfe6ee;
}
.store__badge {
  position: absolute;
  bottom: -22px; right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 18px;
  background: var(--royal);
  box-shadow: 0 26px 52px -20px rgba(9, 49, 138, .55);
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.store__badge span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
}

.store__heading-row { display: flex; gap: 22px; }
.store__heading-bar { width: 6px; flex-shrink: 0; align-self: stretch; border-radius: 6px; background: var(--gold); }
.store__content h2 { font-size: 34px; line-height: 1.18; font-weight: 800; }
.store__content p { margin-top: 12px; font-size: 16px; line-height: 1.65; }
.store__content strong { color: var(--ink); font-weight: 700; }
.store__lead { margin-top: 18px !important; font-size: 18px !important; line-height: 1.5 !important; font-weight: 800; color: var(--ink); }

/* ============================================================
   10b. STORE RANGE
   ============================================================ */
.store-range { position: relative; background: var(--bg-soft); padding: 48px 0; overflow: hidden; }

.store-range__find {
  text-align: center;
  margin-top: 28px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.store-range__infographic {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1240px;
  margin: 24px auto 0;
}
.store-range__infographic::before {
  content: "";
  position: absolute;
  left: 264px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  border-top: 2px dashed rgba(13, 42, 82, .3);
}

.store-range__wheel {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--blue));
  padding: 10px;
  box-shadow: 0 24px 48px -22px rgba(9, 49, 138, .5);
  justify-self: center;
}
.store-range__wheel-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.store-range__wheel-num {
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--royal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.store-range__wheel-label { font-size: 14.5px; font-weight: 800; color: var(--ink); }

.store-range__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.range-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 13px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e9f2;
  box-shadow: 0 12px 26px -18px rgba(13, 42, 82, .4);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.range-item--wide { grid-column: 1 / -1; }

.range-item__num {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.range-item--blue { border-left: 5px solid var(--blue); }
.range-item--blue .range-item__num { background: linear-gradient(135deg, var(--blue), #3aa6ea); }
.range-item--navy { border-left: 5px solid var(--royal); }
.range-item--navy .range-item__num { background: linear-gradient(135deg, var(--royal), var(--blue)); }
.range-item--teal { border-left: 5px solid var(--teal-bright); }
.range-item--teal .range-item__num { background: linear-gradient(135deg, var(--teal-bright), #37c9bd); }
.range-item--gold { border-left: 5px solid var(--gold); }
.range-item--gold .range-item__num { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

.store-range__help {
  text-align: center;
  max-width: 860px;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
}

/* ============================================================
   11. FAQ
   ============================================================ */
.faq {
  position: relative;
  background: var(--bg-soft);
  padding: 48px 0;
  border-top: 1px solid #e6edf6;
  overflow: hidden;
}

.faq__eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.faq__eyebrow i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 10px;
  align-self: center;
}
.faq__eyebrow {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--royal);
}

.faq__heading { text-align: center; font-size: 44px; line-height: 1.12; font-weight: 800; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 44px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px -26px rgba(13, 42, 82, .5);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
}

.faq-item__chev {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #e8f1fc;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.faq-item__a { display: none; }
.faq-item__a p { padding: 0 28px 24px; font-size: 16px; line-height: 1.65; }

.faq-item.is-open .faq-item__a { display: block; }
.faq-item.is-open .faq-item__chev {
  background: var(--blue);
  color: #ffffff;
  transform: rotate(180deg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); }

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.2fr;
  gap: 44px;
  padding-top: 80px;
  padding-bottom: 64px;
}

.site-footer h3 { font-size: 21px; font-weight: 800; color: #ffffff; margin-bottom: 24px; }

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 32px; }
.footer-brand__logo {
  width: 300px;
  height: auto;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
}

.footer-contacts { display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
.footer-contacts li { display: flex; align-items: center; gap: 16px; }
.footer-contacts__icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contacts__icon--blue { background: rgba(42, 127, 212, .16); color: var(--sky); }
.footer-contacts__icon--green { background: rgba(67, 196, 99, .16); color: #43c463; }
.footer-contacts strong { display: block; font-size: 15px; font-weight: 800; color: #ffffff; }
.footer-contacts a { display: block; font-size: 14.5px; font-weight: 600; color: #aebbd2; margin-top: 3px; }
.footer-contacts a:hover { color: #ffffff; }

/* Link columns */
.footer-links__col + .footer-links__col { margin-top: 36px; }
.footer-links__col ul { display: flex; flex-direction: column; gap: 18px; }
.footer-links__col li a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: #c3cee0;
  line-height: 1.5;
}
.footer-links__col li a::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.footer-links__col li a:hover { color: #ffffff; }

/* Inquiry form */
.footer-form {
  background: #0e2750;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 22px;
  align-self: start;
}
.footer-form h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.footer-form form { display: flex; flex-direction: column; gap: 12px; }
.footer-form input,
.footer-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--navy);
  color: #ffffff;
  font-size: 14.5px;
  outline: none;
}
.footer-form input { height: 44px; padding: 0 14px; }
.footer-form textarea { resize: none; }
.footer-form input:focus,
.footer-form textarea:focus { border-color: var(--blue); }
.footer-form ::placeholder { color: #8fa3ca; }

/* Map + address */
.footer-map {
  align-self: start;
  background: linear-gradient(160deg, #102a58, #0c2049);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 30px 30px 24px;
}
.footer-map__frame {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
}
.footer-map__frame iframe { border: 0; display: block; }
.footer-map h3 { font-size: 17px; margin-bottom: 14px; }
.footer-map p { font-size: 15px; line-height: 1.7; color: #aebbd2; }

/* Bottom bar */
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.site-footer__bottom p { font-size: 15px; font-weight: 600; color: #c3cee0; }
.site-footer__bottom strong { color: #ffffff; font-weight: 700; }

.site-footer__socials { display: flex; align-items: center; gap: 28px; }
.site-footer__socials a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
.site-footer__socials a:hover { color: var(--gold-light); }
.social--sm {
  width: 22px; height: 22px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}
.social--yt-wide { width: 24px; height: 18px; font-size: 10px; }

/* ============================================================
   TABLET — 768px to 1099px
   ============================================================ */
@media (max-width: 1099px) {

  .container,
  .stats-strip { padding-left: 32px; padding-right: 32px; }

  /* Header — switch to space-between so links never run under the socials */
  .utility-bar__inner { padding: 0 32px; justify-content: space-between; }
  .utility-bar__links a { padding: 0 10px; font-size: 13px; }
  .utility-bar__links li:first-child a { padding-left: 0; }
  .utility-bar__socials { position: static; right: auto; gap: 10px; }
  .social { width: 32px; height: 32px; }

  .main-nav__inner { padding: 0 32px; height: 96px; }
  .main-nav__brand img { height: 72px; }
  .main-nav__right { gap: 20px; }
  .main-nav__links { display: none; }          /* collapse links, keep CTA + emergency */
  .main-nav__hamburger { display: flex; align-items: center; justify-content: center; }

  /* Hero */
  .hero { height: 560px; }
  .hero__inner { padding: 0 32px; }
  .hero__dots { left: 32px; }
  .hero-slide__headline { font-size: 46px; }
  .hero-slide__years-num { font-size: 110px; }
  .hero-slide__years-line { font-size: 34px; }
  .hero-slide__tpa-headline { font-size: 36px; }
  .tpa-grid { max-width: 560px; gap: 10px; }

  /* Sections */
  .section-head h2 { font-size: 36px; }
  .problems__cards { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .rating-card { left: 12px; }
  .specialities__head { grid-template-columns: 1fr; gap: 20px; }
  .specialities__head h2 { font-size: 36px; }
  .specialities__grid { grid-template-columns: 1fr 1fr; }

  .xray__panel { grid-template-columns: 1fr; gap: 48px; padding: 36px 32px; }
  .xray__content h2 { font-size: 38px; }
  .xray__visual { min-height: 0; }

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

  .insurance__panel { min-height: 420px; }
  .insurance__copy { left: 32px; top: 32px; }
  .insurance__copy h2 { font-size: 32px; }

  .t-card { flex: 0 0 calc(50% - 12px); }

  .cta-banner__split { grid-template-columns: 1fr; }
  .cta-banner__photo { height: 320px; }
  .cta-badge {
    top: auto;
    bottom: 320px;               /* sits on the copy/photo seam */
    left: auto;
    right: 48px;
    transform: translateY(50%);
  }

  .store__grid { grid-template-columns: 1fr; gap: 56px; }
  .store__frame img { height: 360px; }

  .store-range__infographic { grid-template-columns: 1fr; gap: 36px; }
  .store-range__infographic::before { content: none; }

  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE — below 768px
   ============================================================ */

@media (max-width: 767px) {
  .main-nav__appointment { display: none !important; }
}

@media (max-width: 767px) {


  .container,
  .stats-strip { padding-left: 16px; padding-right: 16px; }

  .desktop-br { display: none; }

  /* Trim heavy decorative layers on small screens (as the mobile design does) */
  .bd-plus, .bd-ecg, .bd-lines, .bd-waves, .bd-ring,
  .bd-dots--spec, .bd-dots--store-l, .bd-dots--store-r { display: none; }

  .section-head h2 { font-size: 28px; line-height: 1.15; }
  .section-head p { margin-top: 12px; font-size: 14.5px; }

  /* ---------- Header ---------- */
  .utility-bar__inner {
    height: auto;
    padding: 8px 16px;
    justify-content: space-between;
  }
  .utility-bar__links { display: none; }
  .utility-bar__email { display: block; }
  .utility-bar__socials { position: static; gap: 8px; }
  .social { width: 26px; height: 26px; border-radius: 7px; }
  .social svg { width: 13px; height: 13px; }

  .main-nav__inner { height: 68px; padding: 0 16px; }
  .main-nav__brand img { height: 52px; }
  .main-nav__right { gap: 10px; }
  .main-nav__links,
  .main-nav__appointment,
  .main-nav__emergency { display: none; }

  .main-nav__call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
  }
  .main-nav__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: var(--navy);
  }

  /* ---------- Hero ---------- */
  .hero { height: auto; }

  .hero__img {
    right: auto;
    left: 0;
    bottom: auto;
    width: 100%;
    height: 280px;
    object-position: center 18%;
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(9, 25, 58, .30) 0%, rgba(9, 25, 58, .72) 34%, rgba(9, 25, 58, .96) 52%, var(--navy) 74%);
  }
  .hero__dots-bg { display: none; }

  .hero__inner { padding: 300px 20px 24px; }

  /* JS sets an explicit height on .hero__slides for the active slide */
  .hero__slides { max-width: none; height: 400px; transition: height .5s cubic-bezier(.2, .7, .2, 1); }
  .hero-slide { justify-content: flex-start; }

  .hero-slide__headline { font-size: 32px; line-height: 1.12; letter-spacing: -.025em; }
  .hero-slide__sub { margin-top: 14px; font-size: 15px; max-width: none; }
  .hero-slide__ctas { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 22px; }
  .hero-slide__ctas .btn { height: 52px; font-size: 15.5px; }

  .hero-slide__years { gap: 14px; }
  .hero-slide__years-num { font-size: 96px; }
  .hero-slide__years-word { font-size: 30px; padding-bottom: 6px; }
  .hero-slide__years-line { margin-top: 14px; font-size: 28px; line-height: 1.2; }
  .hero-slide__badge { margin-top: 20px; padding: 12px 22px; border-radius: 12px; font-size: 19px; }
  .hero-slide__badge sup { font-size: 11px; }

  .hero-slide__tpa-headline { font-size: 27px; line-height: 1.15; }
  .hero-slide__underline { display: none; }
  .hero-slide__tpa-sub { margin-top: 8px; font-size: 14.5px; }
  .tpa-grid { gap: 8px; margin-top: 16px; max-width: none; }
  .tpa-card { gap: 8px; padding: 9px 10px; border-radius: 10px; box-shadow: none; }
  .tpa-card__logo { flex-basis: auto; border-right: none; padding-right: 0; font-size: 11px !important; }
  .tpa-card__name { font-size: 11px; }
  .tpa-card__logo--care em { padding: 2px 7px; border-radius: 5px; font-size: 11px; }

  .hero__dots {
    position: static;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .hero__dots button { width: 28px; }

  /* ---------- Stats strip ---------- */
  .stats-strip { padding-bottom: 0; }
  .stats-strip__card {
    margin-top: 0;
    grid-template-columns: 1fr;
    border-radius: 18px;
    box-shadow: 0 30px 60px -34px rgba(13, 42, 82, .45);
  }
  /* Navy band behind the top of the card, matching the hero bottom */
  .stats-strip {
    background: linear-gradient(180deg, var(--navy) 46px, transparent 46px);
    margin-top: -1px;
  }
  .stat-cell { padding: 18px 22px; }
  .stat-cell + .stat-cell { border-left: none; border-top: 1px solid #e2ecf8; }
  .stat-cell__label { font-size: 14px; border-bottom: none; padding-bottom: 0; margin-bottom: 10px; }
  .stat-cell__bar { width: 5px; height: 34px; }
  .stat-cell__num { font-size: 34px; }
  .stat-cell__desc { margin-top: 8px; font-size: 13px; }

  /* ---------- Problems ---------- */
  .problems { padding: 40px 0 44px; margin-top: 28px; }
  .problems .section-head { margin-bottom: 28px; }
  .problems__cards { grid-template-columns: 1fr; gap: 18px; }
  .concern-card { border-radius: 16px; }
  .concern-card__img { height: 170px; order: -1; }   /* image always on top */
  .concern-card__body { padding: 18px; gap: 8px; }
  .concern-card__body h3 { font-size: 16px; }
  .concern-card__body p { font-size: 13.5px; }

  /* ---------- About ---------- */
  .about { padding: 40px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__visual > img { height: 260px; }
  .rating-card { left: 12px; bottom: -24px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.86); }
  .rating-card__row { gap: 10px; }
  .avatar { width: 24px; height: 24px; font-size: 9px; }
  .avatar + .avatar { margin-left: -8px; }
  .rating-card__reviews { font-size: 11px; }
  .rating-card__stars { margin-top: 8px; font-size: 12px; }
  .rating-card__years { display: none; }
  .about__content h2 { font-size: 26px; line-height: 1.2; }
  .about__content p { font-size: 14.5px; }
  .about__lead { font-size: 16px !important; }
  .about__question { font-size: 15px !important; }
  .about__quote { margin-top: 14px; padding-left: 16px; font-size: 15.5px; }

  /* ---------- Specialities ---------- */
  .specialities { padding: 40px 0; }
  .specialities__head { grid-template-columns: 1fr; gap: 12px; }
  .specialities__head h2 { font-size: 26px; line-height: 1.22; }
  .specialities__head p { font-size: 14.5px; padding-bottom: 0; }
  .specialities__grid { grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
  .spec-card { padding: 20px; border-radius: 16px; gap: 10px; }
  .spec-card h3 { font-size: 16.5px; }
  .spec-card p { font-size: 13.5px; }
  .spec-card__arrow { top: 16px; right: 16px; width: 32px; height: 32px; }
  .spec-card__icon { width: 48px; height: 48px; border-radius: 14px; }
  .spec-card--explore { padding: 22px 20px; gap: 16px; }
  .spec-explore__icon { width: 48px; height: 48px; border-radius: 14px; }
  .spec-explore__bottom h3 { font-size: 18px; }

  /* ---------- X-ray ---------- */
  .xray { padding: 8px 0 40px; }
  .xray__panel { grid-template-columns: 1fr; gap: 0; padding: 26px 20px; border-radius: 22px; }
  .xray__content h2 { font-size: 30px; line-height: 1.12; margin-top: 14px; }
  .xray__subtitle { margin-top: 10px; gap: 10px; font-size: 14px; }
  .xray__subtitle-line { width: 28px; }
  .xray__para { font-size: 14px; }
  .xray__para--lead { margin-top: 18px; font-size: 14.5px; }
  .xray__highlight { margin-top: 14px; padding-left: 14px; font-size: 14.5px; }
  .xray__closing { font-size: 14px; }

  /* The panel becomes one column: eyebrow, heading, subtitle, image, paragraphs.
     .xray__content is flattened with display:contents so the visual can slot
     between the subtitle and the body copy via order. */
  .xray__panel { display: flex; flex-direction: column; align-items: stretch; }
  .xray__content { display: contents; }
  .xray__content > .eyebrow { order: 1; align-self: flex-start; }
  .xray__content h2 { order: 2; }
  .xray__subtitle { order: 3; }
  .xray__visual { order: 4; position: relative; padding-left: 0; min-height: 0; margin: 20px 0 0; }
  .xray__para, .xray__highlight, .xray__closing { order: 5; }

  .xray__side-shape,
  .xray__secondary-img { display: none; }
  .xray__main-img { margin-left: 0; border-radius: 12px; }
  .xray__main-img img { height: 220px; }
  .xray__chip {
    top: 10px;
    right: auto;
    left: 10px;
    padding: 9px 15px;
    font-size: 12px;
  }

  /* ---------- Technology ---------- */
  .technology { padding: 40px 0; }
  .technology__cards { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
  .tech-card__title { padding: 13px 12px; border-radius: 12px; font-size: 13px; letter-spacing: .08em; }
  .tech-card__list { margin-top: -12px; padding: 26px 18px 20px; border-radius: 14px; gap: 12px; }
  .tech-card__list li { font-size: 13.5px; padding-left: 30px; }
  .tech-card__list li::before { width: 20px; height: 20px; font-size: 11px; }
  .technology__closing { margin-top: 28px; font-size: 15px; }
  .technology__tagline { margin-top: 10px; font-size: 16px; }

  /* ---------- Insurance ---------- */
  .insurance { padding: 40px 0; }
  .insurance__panel {
    min-height: 0;
    border-radius: 20px;
    padding: 26px 20px;
  }
  .insurance__copy { position: static; max-width: none; }
  .insurance__copy h2 { margin-top: 10px; font-size: 26px; line-height: 1.15; }
  .insurance__sub { margin-top: 10px; font-size: 14px; }

  .insurance__map,
  .ins-pin { display: none; }

  .insurance__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
  }
  .insurance__pills li {
    padding: 9px 14px;
    border-radius: 12px;
    background: #12203f;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: 0 12px 24px -14px rgba(9, 20, 40, .6);
  }

  .insurance__cta-wrap { margin-top: 24px; gap: 14px; }
  .insurance__cta-wrap p { font-size: 14.5px; }
  .insurance__cta { width: 100%; height: 52px; font-size: 15px; }

  /* ---------- Testimonials ---------- */
  .testimonials { padding: 40px 0; }
  .testimonials__carousel { margin-top: 26px; }
  .testimonials__track { gap: 16px; }
  .t-card { flex: 0 0 100%; padding: 24px; border-radius: 18px; gap: 18px; }
  .t-card__text { font-size: 14.5px; }
  .t-card__avatar { width: 40px; height: 40px; font-size: 15px; }
  .t-card__person strong { font-size: 14px; }
  .t-card__person span { font-size: 12px; }
  .t-card__stars { font-size: 14px; }
  .testimonials__controls { margin-top: 24px; gap: 12px; }
  .t-nav { width: 48px; height: 48px; font-size: 18px; }

  /* ---------- CTA banner ---------- */
  .cta-banner { padding: 32px 0; }
  .cta-banner__split {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .cta-banner__photo { order: -1; min-height: 210px; height: 210px; }
  .cta-banner__photo::after { background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 77, .9)); }

  .cta-banner__copy { padding: 28px 22px 30px; }
  .cta-banner__copy h2 { margin-top: 12px; font-size: 25px; line-height: 1.18; }
  .cta-banner__quote { margin-top: 10px; font-size: 14.5px; }
  .cta-banner__para { margin-top: 10px; font-size: 13.5px; }
  .cta-banner__buttons { flex-direction: column; align-items: stretch; gap: 11px; margin-top: 20px; }
  .cta-banner__buttons .btn { height: 50px; font-size: 14.5px; }
  .cta-banner__contacts { gap: 20px; margin-top: 20px; }
  .cta-banner__contacts span { font-size: 10.5px; }
  .cta-banner__contacts a { font-size: 16px; }

  .cta-badge {
    top: 210px;                 /* sits on the photo/copy seam */
    left: auto;
    right: 16px;
    transform: translateY(-50%);
    width: 96px; height: 96px;
  }
  .cta-badge__ring { width: 96px; height: 96px; }
  .cta-badge__ring text { font-size: 13px; }
  .cta-badge__center { width: 34px; height: 34px; }
  .cta-badge__center svg { width: 15px; height: 15px; }

  /* ---------- Store ---------- */
  .store { padding: 40px 0; }
  .store__grid { grid-template-columns: 1fr; gap: 38px; }
  .store__frame { border-radius: 20px; padding: 10px; }
  .store__frame img { height: 230px; border-radius: 12px; }
  .store__badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 12.5px;
  }
  .store__badge span { width: 28px; height: 28px; font-size: 14px; }
  .store__heading-row { gap: 14px; }
  .store__heading-bar { width: 5px; }
  .store__content h2 { font-size: 23px; line-height: 1.25; }
  .store__content p { font-size: 14px; }
  .store__lead { font-size: 15px !important; }

  /* ---------- Store range ---------- */
  .store-range { padding: 40px 0; }
  .store-range__find { display: none; }
  .store-range__infographic { grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
  .store-range__infographic::before { content: none; }
  .store-range__wheel { width: 170px; height: 170px; padding: 8px; }
  .store-range__wheel-num { font-size: 44px; }
  .store-range__wheel-label { font-size: 12.5px; }
  .store-range__items { grid-template-columns: 1fr; gap: 12px; }
  .range-item { min-height: 64px; padding: 12px 16px; border-radius: 14px; gap: 12px; font-size: 13.5px; line-height: 1.4; }
  .range-item__num { width: 32px; height: 32px; font-size: 13px; }
  .store-range__help { margin-top: 26px; font-size: 14px; }

  /* ---------- FAQ ---------- */
  .faq { padding: 40px 0; }
  .faq__eyebrow { font-size: 13px; margin-bottom: 12px; }
  .faq__heading { font-size: 25px; line-height: 1.2; }
  .faq__list { gap: 12px; margin-top: 26px; }
  .faq-item { border-radius: 14px; }
  .faq-item__q { padding: 17px 18px; font-size: 14.5px; gap: 14px; }
  .faq-item__chev { width: 30px; height: 30px; font-size: 14px; }
  .faq-item__a p { padding: 0 18px 17px; font-size: 13.5px; }

  /* ---------- Footer ---------- */
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 36px;
  }
  .footer-brand { gap: 22px; }
  .footer-brand__logo { width: 240px; padding: 12px 15px; border-radius: 12px; }
  .footer-contacts { gap: 14px; }
  .footer-contacts__icon { width: 44px; height: 44px; border-radius: 12px; }
  .footer-contacts__icon svg { width: 21px; height: 21px; }
  .footer-contacts strong { font-size: 13.5px; }
  .footer-contacts a { font-size: 13px; margin-top: 2px; }

  /* Specialities + Useful Links side by side on mobile */
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-links__col + .footer-links__col { margin-top: 0; }
  .site-footer h3 { font-size: 16px; margin-bottom: 14px; }
  .footer-links__col ul { gap: 11px; }
  .footer-links__col li a { font-size: 13px; padding-left: 14px; }
  .footer-links__col li a::before { width: 5px; height: 5px; top: 7px; }

  .footer-form { border-radius: 16px; padding: 20px; }
  .footer-form h3 { font-size: 16px; margin-bottom: 14px; }
  .footer-form form { gap: 10px; }
  .footer-form input { font-size: 14px; }
  .footer-form textarea { font-size: 14px; }

  .footer-map { border-radius: 16px; padding: 20px; }
  .footer-map__frame { margin-bottom: 16px; }
  .footer-map__frame iframe { height: 170px; }
  .footer-map h3 { font-size: 15px; margin-bottom: 10px; }
  .footer-map p { font-size: 13.5px; }

  .site-footer__bottom-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .site-footer__bottom p { font-size: 12.5px; text-align: center; }
  .site-footer__socials { gap: 18px; }
  .site-footer__socials a { font-size: 13px; }
  .social--sm { width: 20px; height: 20px; font-size: 11px; }
  .social--yt-wide { width: 22px; height: 16px; font-size: 9px; }
}





/* Desktop scaling — all screens 1100px and wider */
@media (min-width: 1100px) {
  body { zoom: 0.85; }
  .hero { height: clamp(440px, calc(118vh - 260px), 640px); }
  .hero-slide__headline { font-size: 44px; }
  .hero-slide__years-line { font-size: 56px; }
}