/* =============================================================
   SUVIRA HOSPITAL · ROBOTIC TKR LANDING PAGE
   Brand: Navy Blue + Teal (logo) + Gold (conversion accent)
   Fonts: Fraunces (display) + Manrope (body)
   Version: 2.0 - Conversion-focused redesign
   ============================================================= */

:root {
  /* Brand */
  --navy: #1e3a7e;
  --navy-dark: #152a5e;
  --navy-deep: #0b1638;
  --teal: #26a69a;
  --teal-light: #4ac0b5;
  --teal-dark: #178378;
  --gold: #e4a93c;
  --gold-light: #f5c96c;
  --gold-dark: #b88821;
  --orange: #ff6b35;

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-tint: #edf3f8;
  --bg-cream: #fef9f0;
  --text: #1a2138;
  --text-muted: #5a6278;
  --text-light: #8a91a6;
  --border: #e3e8ef;
  --border-soft: #eef2f7;

  /* Status */
  --success: #16a97e;
  --danger: #e05252;
  --warning: #f5a623;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(11, 22, 56, .05);
  --sh-sm: 0 2px 8px rgba(11, 22, 56, .07);
  --sh-md: 0 10px 28px rgba(11, 22, 56, .1);
  --sh-lg: 0 20px 50px rgba(11, 22, 56, .14);
  --sh-xl: 0 30px 70px rgba(11, 22, 56, .22);
  --sh-glow: 0 10px 40px rgba(38, 166, 154, .35);
  --sh-gold: 0 10px 30px rgba(228, 169, 60, .4);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Spacing */
  --sec: 60px;
  --container: 1240px;

  /* Fonts */
  --f-d: 'Fraunces', Georgia, serif;
  --f-b: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all .25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-d);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-deep);
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}

p {
  margin: 0 0 1em;
}

em {
  font-style: italic;
  color: var(--teal-dark);
}

/* =====  HELPERS  ===== */
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--sec) 0;
  position: relative;
}

.section__head {
  text-align: center;
  max-width: 70%;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.section__title {
  font-size: 36px;
  margin-bottom: 18px;
  font-weight: 700;
}

.section__title .accent {
  color: var(--teal);
  font-style: italic;
}

.section__title .accent-gold {
  color: var(--gold-light);
  font-style: italic;
}

.section__desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.section__head--light .section__title,
.section__title--light {
  color: #fff;
}

.section__head--light .section__desc,
.section__desc--light {
  color: #c5cdd8;
}

.accent {
  color: var(--teal);
}

.hide-md {}

/* =====  EYEBROW  ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38, 166, 154, .12);
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  border: 1px solid rgba(38, 166, 154, .25);
}

.eyebrow--light {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
}

.eyebrow i {
  font-size: .9rem;
}

.eyebrow--light i {
  color: var(--gold-light);
}

/* =====  BUTTONS  ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-b);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: .02em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  box-shadow: var(--sh-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(38, 166, 154, .45);
  filter: brightness(1.06);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: var(--sh-gold);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(228, 169, 60, .5);
  filter: brightness(1.08);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}

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

.btn--outline-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--xl {
  padding: 12px 38px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: .85rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* =============================================================
   ANNOUNCEMENT BAR - Marquee
   ============================================================= */
.announce-bar {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  font-size: .85rem;
  font-weight: 700;
}

.announce-bar__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

.announce-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.announce-bar__item:last-child {
  border-right: none;
}

.announce-bar__item i {
  font-size: 1rem;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

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

/* =============================================================
   TOP BAR
   ============================================================= */
.top-bar {
  background: var(--navy-deep);
  color: #c5cdd8;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.top-bar i {
  color: var(--teal-light);
  margin-right: 6px;
}

.top-bar a {
  color: #c5cdd8;
}

.top-bar a:hover {
  color: var(--teal-light);
}

.tb-whatsapp {
  background: rgba(37, 211, 102, .15);
  color: #25d366 !important;
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(37, 211, 102, .3);
}

.tb-whatsapp i {
  color: #25d366 !important;
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: all .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  box-shadow: var(--sh-md);
  border-bottom-color: var(--border-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0;
}

.logo img {
  height: 54px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav>a:not(.btn):not(.header-call) {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-deep);
  position: relative;
}

.primary-nav>a:not(.btn):not(.header-call):hover {
  color: var(--teal);
}

.primary-nav>a:not(.btn):not(.header-call)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s ease;
}

.primary-nav>a:not(.btn):not(.header-call):hover::after {
  width: 100%;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 6px;
  background: var(--bg-soft);
  border-radius: var(--r-full);
  transition: all .3s ease;
}

.header-call i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
}

.header-call div {
  line-height: 1.2;
}

.header-call small {
  font-size: .7rem;
  color: var(--text-muted);
  display: block;
}

.header-call strong {
  color: var(--navy-deep);
  font-size: .92rem;
}

.header-call:hover {
  background: var(--bg-tint);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all .3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1638 0%, #1e3a7e 50%, #178378 100%);
  isolation: isolate;
  background: url(../suvira-landing/assets/images/banner.webp);
  background-size: contain;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60L0 40Q720 -20 1440 40L1440 60Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60L0 40Q720 -20 1440 40L1440 60Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631815588090-d1bcbe9b4b72?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center right;
  opacity: .25;
  z-index: -2;
  mix-blend-mode: luminosity;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11, 22, 56, .94) 0%, rgba(11, 22, 56, .88) 40%, rgba(23, 131, 120, .7) 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  z-index: -1;
  opacity: .5;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .3;
  z-index: -1;
}

.hero__blob--1 {
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
}

.hero__blob--2 {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .15;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  box-shadow: var(--sh-sm);
}

.hero__tag .pulse {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .9);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .9);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.hero__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #fff;
}

.hero__title .strike {
  position: relative;
  font-style: italic;
  font-weight: 500;
}


.hero__title .accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero__title .gradient-text {
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--teal-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero__title .gradient-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 14px;
  background: rgba(228, 169, 60, .25);
  z-index: -1;
  border-radius: 4px;
}

.hero__sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero__sub strong {
  color: var(--gold-light);
}

.hero__offers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero__offer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  padding: 12px 18px 12px 14px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(255, 255, 255, .18);
  transition: all .3s ease;
}

.hero__offer:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .15);
  box-shadow: var(--sh-md);
}

.hero__offer i {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
}

.hero__offer strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  line-height: 1.2;
}

.hero__offer small {
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.hero .btn--outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero__proof-avatars {
  display: flex;
}

.hero__proof-avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--navy-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--f-d);
  margin-left: -12px;
  box-shadow: var(--sh-xs);
}

.hero__proof-avatars span:first-child {
  margin-left: 0;
}

.hero__proof-text .stars {
  color: var(--gold-light);
  font-size: .9rem;
  margin-bottom: 2px;
}

.hero__proof-text .stars strong {
  color: #fff;
  margin-left: 6px;
  font-family: var(--f-d);
  font-size: 1rem;
}

.hero__proof-text span {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
}

.hero__proof-text strong {
  color: #fff;
}

/* Hero Quick Form */
.hero__form-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-soft);
  isolation: isolate;
}

.hero__form-card::before {
  /* content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--teal), var(--gold), var(--teal));
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: .4;
  background-size: 200% 200%;
  animation: border-shift 8s linear infinite; */
}

@keyframes border-shift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 200%;
  }
}

.hero__form-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  color: #fff;
  padding: 18px 22px 18px;
  text-align: center;
  position: relative;
}

.hero__form-ribbon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a8802b, var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(228, 169, 60, .4);
  border: 4px solid #fff;
}

.hero__form-top h3 {
  color: #fff;
  font-size: 1.45rem;
  margin: 0 0 6px;
}

.hero__form-top p {
  color: #c5cdd8;
  font-size: .92rem;
  margin: 0;
}

.hero__form-top strong {
  color: var(--gold-light);
}

.hero__form {
  padding: 26px 28px 28px;
}

.hero__form .field {
  margin-bottom: 12px;
}

.form-micro {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin: 12px 0 0;
}

.form-micro i {
  color: var(--success);
}

/* Phone input */
.phone-input {
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: all .25s ease;
}

.phone-input:focus-within {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(38, 166, 154, .1);
}

.phone-input>span {
  padding: 13px 12px;
  background: var(--bg-tint);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: .92rem;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

.phone-input>input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Field generic */
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: all .25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(38, 166, 154, .1);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

/* =============================================================
   USP STRIP
   ============================================================= */
.usp-strip {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 5;
}

.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usp {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 8px 4px;
}

.usp+.usp {
  border-left: 1px solid var(--border-soft);
  padding-left: 20px;
}

.usp i {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(38, 166, 154, .12), rgba(30, 58, 126, .08));
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.usp strong {
  display: block;
  color: var(--navy-deep);
  font-family: var(--f-d);
  font-size: 1rem;
  line-height: 1.2;
}

.usp span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* =============================================================
   STATS
   ============================================================= */
.stats {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.stats__bg-img {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(38, 166, 154, .2), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(228, 169, 60, .1), transparent 35%);
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 30m-1 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0' fill='%23ffffff' opacity='0.07'/%3E%3C/svg%3E");
}

.stats__inner {
  position: relative;
  z-index: 2;
}

.stats__head {
  text-align: center;
  margin-bottom: 50px;
}

.stats__head h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 26px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-6px);
  border-color: rgba(38, 166, 154, .4);
}

.stat__icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(38, 166, 154, .3);
}

.stat__num {
  font-family: var(--f-d);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  font-size: .88rem;
  color: #c5cdd8;
  font-weight: 500;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}

.about__media {
  position: relative;
  aspect-ratio: 6/5;
}

.about__img-main {
  width: 88%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
}

.about__img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 22, 56, .3) 100%);
}

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

.about__img-main:hover img {
  transform: scale(1.05);
}

.about__img-float {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 6px solid #fff;
}

.about__img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: 30px;
  right: -10px;
  background: #fff;
  padding: 14px 20px 14px 14px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-soft);
}

.about__badge i {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.about__badge strong {
  display: block;
  color: var(--navy-deep);
  font-family: var(--f-d);
  font-size: .95rem;
}

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

.about__text h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.about__text>p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.75;
  font-weight: 500;
}


.check-list {
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  align-items: flex-start;
}

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

.check-list i {
  color: var(--teal);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.check-list strong {
  color: var(--navy-deep);
}

.about__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
}

.phone-link i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(38, 166, 154, .12);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.phone-link small {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.phone-link strong {
  font-size: 1.1rem;
  font-family: var(--f-d);
}

/* Types of Robotic TKR */
.types {
  background: #e0f0ff;
  padding: 60px 40px;
  border-radius: var(--r-xl);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.types::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(38, 166, 154, .08), transparent 70%);
  border-radius: 50%;
}

.types__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

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

.type-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all .35s ease;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--teal);
}

.type-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.type-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.type-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.type-card__tag {
  display: inline-block;
  background: rgba(38, 166, 154, .12);
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.type-card__tag--teal {
  background: rgba(30, 58, 126, .1);
  color: var(--navy);
}

.type-card__tag--gold {
  background: rgba(228, 169, 60, .15);
  color: var(--gold-dark);
}

.type-card__tag--orange {
  background: rgba(255, 107, 53, .12);
  color: var(--orange);
}

/* =============================================================
   COMPARE SECTION
   ============================================================= */
.compare-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.compare-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=2000&q=70');
  background-size: cover;
  background-position: center;
  opacity: .08;
  mix-blend-mode: overlay;
}

.compare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(38, 166, 154, .2), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(228, 169, 60, .12), transparent 40%);
}

.compare-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l100 100M100 0L0 100' stroke='%23ffffff' stroke-width='1' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.compare-table {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .25s ease;
}

.compare-row:hover {
  background: rgba(255, 255, 255, .03);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row--head {
  background: rgba(255, 255, 255, .07);
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
}

.compare-row--head:hover {
  background: rgba(255, 255, 255, .07);
}

.compare-cell {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: #d0d7e2;
}

.compare-cell--label {
  color: #fff;
  font-weight: 600;
  font-family: var(--f-d);
}

.compare-cell--label i {
  color: var(--gold-light);
  font-size: 1rem;
  margin-right: 4px;
}

.compare-cell--bad {
  color: #f8a4a4;
}

.compare-cell--bad i {
  color: var(--danger);
  font-size: .9rem;
}

.compare-cell--good {
  color: #a5e4dc;
  background: rgba(38, 166, 154, .12);
  position: relative;
  font-weight: 600;
}

.compare-cell--good i {
  color: var(--success);
  font-size: 1rem;
}

.compare-row--head .compare-cell--good {
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding-right: 14px;
}

.compare-row--head .compare-cell--good span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.compare-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

/* =============================================================
   DOCTOR PROFILE
   ============================================================= */
.doctor {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}

.doctor__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 50%, rgba(38, 166, 154, .07), transparent 60%);
}

.doctor__grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.doctor__visual {
  position: relative;
}

.doctor__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  z-index: 2;
}

.doctor__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor__img-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 2;
}

.doctor__exp-bubble {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #1c3778;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sh-xl);
  z-index: 3;
  border: 6px solid #fff;
}

.doctor__exp-bubble strong {
  font-family: var(--f-d);
  font-size: 2.4rem;
  line-height: 1;
}

.doctor__exp-bubble span {
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 4px;
}

.doctor__awards {
  position: absolute;
  top: 40px;
  left: -70px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}

.award {
  background: #fff;
  padding: 12px 16px 12px 12px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-soft);
}

.award i {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
}

.award span {
  color: var(--navy-deep);
  font-weight: 700;
  font-size: .82rem;
  line-height: 1.2;
}

.doctor__content .eyebrow {
  margin-bottom: 16px;
}

.doctor__name {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-deep);
}

/* LEFT SIDE STICKY */
#doctor .doctor__visual {
  position: sticky;
  top: 100px;
  /* header height ke according adjust kar lena */
  align-self: start;
}

/* Ensure right side scrolls normally */
#doctor .doctor__content {
  position: relative;
}

/* Responsive fix */
@media (max-width: 992px) {
  #doctor .doctor__grid {
    grid-template-columns: 1fr;
  }

  #doctor .doctor__visual {
    position: relative;
    top: unset;
  }
}

#doctor {
  overflow: visible;
}

.doctor__credentials {
  font-family: var(--f-d);
  font-size: 1rem;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.doctor__title-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 15px;
}

.doctor__title-role span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .95rem;
}

.doctor__bio {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.doctor__bio strong {
  color: var(--navy-deep);
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding: 24px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}

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

.cred i {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: #1c377814;
  color: #1c3778;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cred strong {
  display: block;
  color: var(--navy-deep);
  font-size: .92rem;
  line-height: 1.3;
}

.cred span {
  color: var(--text-muted);
  font-size: .8rem;
}

.doc-spec {
  margin-bottom: 24px;
}

.doc-spec h4 {
  font-size: .82rem;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  font-family: var(--f-b);
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy-deep);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  transition: all .25s ease;
}

.chips span:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
}

.doc-assoc {
  padding: 14px 18px;
  background: rgba(228, 169, 60, .08);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-xs);
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.7;
}

.doc-assoc strong {
  color: var(--navy-deep);
  display: block;
  margin-bottom: 4px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.doctor__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

.condition-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-soft);
  transition: all .35s ease;
}

.condition-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--teal);
}

.condition-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.condition-card__body {
  padding: 24px 26px;
}

.condition-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.condition-card h4 i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(38, 166, 154, .12);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: .9rem;
}

.condition-card p {
  font-size: 16px;
  margin: 0;
  line-height: 1.65;
}

/* Self Check */
.self-check {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  padding: 50px 45px;
  border-radius: var(--r-xl);
  border: 1px dashed rgba(38, 166, 154, .4);
  position: relative;
  overflow: hidden;
}

.self-check::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(228, 169, 60, .1), transparent 70%);
  border-radius: 50%;
}

.self-check__left h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 12px;
}

.self-check__left p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.self-check__left strong {
  color: var(--navy-deep);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 24px;
}

.check-grid li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: .92rem;
  line-height: 1.5;
  padding: 6px 0;
}

.check-grid i {
  color: var(--teal);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================================
   PROCEDURE / JOURNEY
   ============================================================= */
.procedure {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

#procedure {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}

#procedure .section__title {
  color: #fff;
}

#procedure .section__desc {
  color: #fff;
}

#procedure .eyebrow {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.footer .footer__col.footer__brand img {
  border-radius: 10px;
}

#procedure .eyebrow i {
  color: var(--gold-light);
}

#procedure .section__title .accent {
  color: var(--gold-light);
}

.procedure__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(38, 166, 154, .08), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(228, 169, 60, .06), transparent 40%);
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;
}

.journey__step {
  position: relative;
  padding-top: 30px;
}

.journey__dot {
  position: absolute;
  top: 0;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  font-family: var(--f-d);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(38, 166, 154, .35);
  z-index: 3;
  border: 5px solid #fff;
}

.journey__card {
  background: #fff;
  padding: 50px 28px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
  transition: all .35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.journey__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.journey__step:hover .journey__card {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.journey__step:hover .journey__card::before {
  transform: scaleX(1);
}

.journey__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(38, 166, 154, .12), rgba(30, 58, 126, .08));
  color: var(--teal);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: none;
}

.journey__card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.journey__card p {
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0;
  line-height: 1.7;
}

.journey__card em {
  color: var(--gold-dark);
  font-weight: 600;
}

.journey__card strong {
  color: var(--teal-dark);
}

/* =============================================================
   WHY US
   ============================================================= */
.why-us {
  background: #fff;
}

.why-us__grid {
  display: grid;
  grid-template-columns: .7fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.why-us__hero-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
}

.why-us__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__rating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}

.why-us__rating .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-us__rating strong {
  display: block;
  font-family: var(--f-d);
  font-size: 1.8rem;
  color: var(--navy-deep);
  line-height: 1;
}

.why-us__rating span {
  font-size: .85rem;
  color: var(--text-muted);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: all .3s ease;
}

.feature:hover {
  background: #fff;
  box-shadow: var(--sh-md);
  border-color: var(--teal);
  transform: translateX(4px);
}

.feature__ic {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: #1c3778;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.feature p {
  color: var(--text-muted);
  font-size: .85rem;
  margin: 0;
  line-height: 1.55;
}

.other-specs {
  padding: 18px 22px;
  background: rgba(30, 58, 126, .05);
  border-left: 3px solid var(--navy);
  border-radius: var(--r-xs);
}

.other-specs strong {
  display: block;
  color: var(--navy-deep);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  font-family: var(--f-b);
  font-weight: 700;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-tags span {
  background: #fff;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-deep);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-tags i {
  color: var(--teal);
  font-size: .85rem;
}

/* =============================================================
   COST SECTION
   ============================================================= */
.cost {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cost__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(228, 169, 60, .15), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(38, 166, 154, .15), transparent 40%);
}

.cost .container {
  position: relative;
  z-index: 2;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  padding: 34px 30px 26px;
  border-radius: var(--r-lg);
  position: relative;
  color: var(--text);
  transition: all .4s ease;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
}

.price-card__tag {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--teal);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--r-full);
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
}

.price-card__tag--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.price-card__tag--teal {
  background: var(--navy);
}

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--navy-deep);
}

.price-card__amt {
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}

.price-card__amt small {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-card__amt strong {
  font-family: var(--f-d);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.price-card__amt .save {
  display: inline-block;
  background: linear-gradient(135deg, #ffe89e, #ffd166);
  color: #8a5800;
  font-size: .78rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-top: 4px;
}

.price-card ul {
  margin-bottom: 24px;
}

.price-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text);
}

.price-card ul i {
  color: var(--teal);
  font-size: .95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.emi-line {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: .82rem;
  color: var(--gold-dark);
  font-weight: 700;
  background: rgba(228, 169, 60, .1);
  padding: 8px;
  border-radius: var(--r-sm);
}

.price-card--featured {
  transform: scale(1.05);
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  border-color: var(--gold);
  box-shadow: var(--sh-xl);
}

.price-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-disclaimer {
  text-align: center;
  color: #aeb8c8;
  font-size: .82rem;
  margin: 30px auto 50px;
  max-width: 720px;
  font-style: italic;
}

.insurance-block {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}

.insurance-block__head {
  text-align: center;
  margin-bottom: 30px;
}

.insurance-block__head h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.insurance-block__head h3 i {
  color: var(--gold-light);
  margin-right: 8px;
}

.insurance-block__head p {
  color: #c5cdd8;
  margin: 0;
}

.insurance-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.ins-logo {
  background: #fff;
  color: var(--navy-deep);
  padding: 16px 10px;
  border-radius: var(--r-sm);
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  transition: all .3s ease;
}

.ins-logo:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testi-section {
  background: linear-gradient(135deg, #f9fbfd 0%, #eef4f9 100%);
  position: relative;
  overflow: hidden;
}

.testi-section::before {
  content: '';
  position: absolute;
  top: 60px;
  left: -20px;
  font-family: var(--f-d);
  font-size: 0;
  width: 0;
  height: 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.testi-card {
  background: #fff;
  padding: 36px 34px 30px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all .35s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.testi-card__quote {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 3rem;
  color: rgba(38, 166, 154, .1);
  line-height: 1;
}

.testi-card__stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1rem;
}

.testi-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--sh-sm);
}

.testi-card__author strong {
  display: block;
  color: var(--navy-deep);
  font-family: var(--f-d);
  font-size: 1.05rem;
}

.testi-card__author span {
  font-size: .85rem;
  color: var(--text-muted);
}

.testi-card--featured {
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  border-color: var(--gold);
}

.testi-card__video {
  position: relative;
  margin: -36px -34px 24px;
  height: 200px;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  place-items: center;
}

.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 126, .4), rgba(38, 166, 154, .4));
}

.video-play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  position: relative;
  z-index: 2;
  transition: all .3s ease;
  padding-left: 4px;
}

.video-play:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

.video-play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

.video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(228, 169, 60, .95);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 3;
  backdrop-filter: blur(10px);
}

/* =============================================================
   MID CTA BANNER
   ============================================================= */
.mid-cta {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
}

.mid-cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(228, 169, 60, .2), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(38, 166, 154, .2), transparent 40%);
}

.mid-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1' fill='%23ffffff' opacity='0.08'/%3E%3C/svg%3E");
}

.mid-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mid-cta__content {
  max-width: 80%;
  margin: 0 auto;
}

.mid-cta h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 14px;
}

.mid-cta p {
  color: #d0d7e2;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.mid-cta strong {
  color: #fff;
}

.mid-cta em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.mid-cta__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
  background: #fff;
}

.faq__container {
  max-width: 900px;
}

.accordion {
  margin-top: 20px;
}

.acc-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .3s ease;
}

.acc-item[open] {
  border-color: var(--teal);
  background: #fff;
  box-shadow: var(--sh-md);
}

.acc-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-d);
}

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

.acc-item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform .3s ease;
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 2px;
}

.acc-item[open] summary::after {
  transform: rotate(45deg);
}

.acc-body {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.75;
}

.acc-body p {
  margin: 0;
}

.acc-body strong {
  color: var(--navy-deep);
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(38, 166, 154, .2), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(228, 169, 60, .12), transparent 40%);
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 60px;
  align-items: center;
}

.contact__info h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 16px;
}

.contact__lead {
  color: #c5cdd8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.contact__lead strong {
  color: var(--gold-light);
}

.contact__list {
  margin-bottom: 30px;
}

.contact__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact__list li:last-child {
  border-bottom: none;
}

.contact__list i {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: rgba(38, 166, 154, .15);
  color: var(--teal-light);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__list strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  margin-bottom: 2px;
}

.contact__list span,
.contact__list a {
  color: #aeb8c8;
  font-size: .92rem;
  line-height: 1.55;
}

.contact__list a:hover {
  color: var(--teal-light);
}

.contact__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact__trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: #c5cdd8;
  font-weight: 600;
}

.contact__trust i {
  color: var(--gold-light);
  font-size: 1rem;
}

.contact__form-card {
  background: #fff;
  padding: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.contact__form-card::before {
  /* content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--gold), var(--teal), var(--gold));
  background-size: 200% 200%;
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: .4;
  animation: border-shift 10s linear infinite; */
}

.contact__form-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 30px;
  text-align: center;
}

.contact__form-top h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.contact__form-top p {
  color: #c5cdd8;
  font-size: .88rem;
  margin: 0;
}

.contact__form-top i {
  color: var(--gold-light);
}

.contact__form {
  padding: 30px;
}

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

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.phone-input--light>span {
  background: var(--bg-tint);
}

.form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin: 14px 0 0;
}

.form-note i {
  color: var(--success);
}

/* =============================================================
   MAP
   ============================================================= */
.map-section {
  line-height: 0;
  background: var(--bg-soft);
}

.map-section iframe {
  filter: grayscale(.15);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--navy-deep);
  color: #aeb8c8;
  padding-top: 80px;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1.7fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer .footer__col ul.links {
  column-count: 2;
}

.footer__brand p {
  font-size: .92rem;
  line-height: 1.75;
  margin: 18px 0;
}

.footer__brand em {
  color: var(--gold-light);
}

.footer__logo {
  height: 58px;
  width: auto;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: all .3s ease;
}

.footer__socials a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--f-d);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 3px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul a {
  color: #aeb8c8;
  font-size: .9rem;
  transition: all .25s ease;
}

.footer__col ul a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .88rem;
  line-height: 1.6;
}

.footer__contact i {
  color: var(--teal-light);
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}

.footer__contact a {
  color: #aeb8c8;
}

.footer__contact a:hover {
  color: var(--teal-light);
}

.footer__bottom {
  background: rgba(0, 0, 0, .3);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: .82rem;
  text-align: center;
}

.footer__bottom p {
  margin: 0 0 6px;
}

.footer__bottom a {
  color: var(--teal-light);
}

.footer__bottom a:hover {
  text-decoration: underline;
}

.disclaimer {
  color: #7b8497;
  font-size: .78rem;
  font-style: italic;
  margin: 6px 0 0;
}

/* =============================================================
   FLOATING BUTTONS
   ============================================================= */
.float-btn {
  position: fixed;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  transition: all .3s ease;
}

.float-btn--whatsapp {
  bottom: 94px;
  background: #25d366;
}

.float-btn--call {
  bottom: 22px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn__ring {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.float-btn__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-deep);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}

.float-btn__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy-deep);
}

.float-btn:hover .float-btn__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* Mobile Sticky Bar */
.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, .08);
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
}

.mobile-sticky__btn {
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy-deep);
  border-right: 1px solid var(--border-soft);
  transition: all .25s ease;
}

.mobile-sticky__btn:last-child {
  border-right: none;
}

.mobile-sticky__btn i {
  font-size: 1.2rem;
}

.mobile-sticky__btn--call {
  color: var(--teal);
}

.mobile-sticky__btn--wa {
  color: #ffffff;
}

.mobile-sticky__btn--book {
  color: #fff;
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  box-shadow: var(--sh-lg);
}

#conditions {
  background: #d2dfff87;

}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {


  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__form-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

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

  .stats__grid .stat:nth-child(4),
  .stats__grid .stat:nth-child(5) {
    grid-column: span 1;
  }

  .usp-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp+.usp {
    border-left: none;
    padding-left: 0;
  }

  .about__grid,
  .doctor__grid,
  .why-us__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .doctor__awards {
    position: static;
    flex-direction: row;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .doctor__exp-bubble {
    right: 20px;
    bottom: -10px;
    width: 110px;
    height: 110px;
  }

  .doctor__exp-bubble strong {
    font-size: 1.9rem;
  }

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

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

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

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .price-card--featured {
    transform: none;
  }

  .price-card--featured:hover {
    transform: translateY(-8px);
  }

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

  .insurance-logos {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .self-check {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --sec: 40px;
  }

  .mobile-sticky {
    background: #229f93;
    color: #fff;
  }

  .mobile-sticky__btn--call {
    color: #fff;
  }

  .footer__col h4 {
    text-align: start;
  }

  .insurance-block {
    padding: 20px 20px;
  }

  .testi-card {
    padding: 20px;
    border-radius: 10px;
  }

  .mid-cta__content {
    max-width: 100%;
  }

  .mid-cta {
    padding: 40px 0;
  }

  .contact__form {
    padding: 20px;
  }

  .contact__form-top {
    padding: 15px;
  }

  .self-check {
    padding: 30px 22px;
    border-radius: 10px;
  }

  .stats__head h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .section__title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .doctor__awards {
    display: none;
  }

  .doctor__img-wrap {
    height: 300px;
    width: 100%;
  }

  .cred-grid {
    padding: 20px 14px;
  }

  .doctor__bg-pattern {
    display: none;
  }

  .doctor__ctas {
    justify-content: center;
  }

  .doctor__img-accent {
    display: none;
  }

  .compare-cta {
    margin-top: 30px;
  }

  .stats__head {
    margin-bottom: 30px;
  }

  .check-list {
    margin-bottom: 10px;
  }

  .types {
    padding: 30px 10px;
  }

  .section__head {
    max-width: 100%;
  }

  .about__grid,
  .doctor__grid,
  .why-us__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__grid {
    margin-bottom: 40px;
  }

  .types__title {
    font-size: 28px;
    line-height: 44px;
  }

  .about__text h3 {
    font-size: 26px;
  }

  .hide-md {
    display: none !important;
  }

  .top-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .header-call {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 30px 30px;
    gap: 24px;
    box-shadow: var(--sh-xl);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav>a {
    font-size: 1.05rem;
  }

  .primary-nav .header-call {
    display: flex !important;
    width: 100%;
  }

  .primary-nav .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 40px 0 100px;
    background: linear-gradient(135deg, #0b1638 0%, #1e3a7e 50%, #178378 100%);
    isolation: isolate;
  }

  .usp span {
    font-size: 14px;
  }

  .stats {
    padding: 40px 0;
  }

  .hero__title {
    font-size: 1.9rem;
  }

  .stat {
    padding: 20px 20px;
  }

  .stat__num {
    font-size: 22px;
  }

  .hero__offers {
    gap: 10px;
  }

  .hero__offer {
    padding: 10px 14px 10px 12px;
    flex: 1;
    min-width: 140px;
  }

  .hero__offer strong {
    font-size: .82rem;
  }

  .hero__offer small {
    font-size: .7rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .section__head {
    margin-bottom: 40px;
  }

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

  .stats__grid .stat:last-child {
    display: none;
  }

  .usp-strip {
    padding: 24px 0;
  }

  .usp-strip__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .conditions__grid,
  .journey,
  .types__grid,
  .features {
    grid-template-columns: 1fr;
  }

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

  .compare-table {
    font-size: .85rem;
  }

  .compare-cell {
    padding: 14px 12px;
    font-size: .85rem;
  }

  .compare-row--head {
    font-size: .88rem;
  }

  .compare-row--head .compare-cell--good span {
    display: none;
  }

  .insurance-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer .footer__col ul {
    text-align: start;
  }

  .footer__contact li {
    max-width: 100% !important;
    justify-content: start !important;
  }

  .footer__grid {
    padding-bottom: 20px;
  }

  .footer__contact li {
    justify-content: center;
    text-align: left;
    max-width: fit-content;
    margin-inline: auto;
  }

  .mobile-sticky {
    display: grid;
  }

  body {
    padding-bottom: 66px;
  }

  .float-btn {
    display: none;
  }

  .hero__tag {
    padding: 8px 18px;
    text-align: center;
  }

  .hero__tag .pulse {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .hero__sub {
    font-size: .95rem;
  }


  .stats__grid .stat:last-child {
    grid-column: span 1;
  }

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

  .contact__trust {
    gap: 10px;
  }

  .contact__trust div {
    font-size: .82rem;
  }



  .about__img-float {
    display: none;
  }

  .about__img-main {
    width: 100%;
  }

  .about__badge {
    right: -6px;
    padding: 10px 14px 10px 10px;
  }

  .about__badge i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .insurance-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .mid-cta__ctas {
    flex-direction: column;
  }

  .mid-cta__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .top-bar {
    display: none;
  }
}

/* Print */
@media print {

  .announce-bar,
  .top-bar,
  .float-btn,
  .mobile-sticky,
  .nav-toggle,
  .map-section {
    display: none;
  }
}