/* ============================================================
   ANUVANSH CLINIC — Home page
   ============================================================ */

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 40px;
  overflow: hidden;
  background:
    radial-gradient(55% 80% at 82% 0%, rgba(241, 146, 152, 0.13), transparent 60%),
    radial-gradient(60% 90% at 0% 100%, rgba(200, 88, 134, 0.1), transparent 55%),
    var(--c-bg);
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 60% at 70% 30%, rgba(200, 88, 134, 0.06), transparent 70%);
  animation: glowDrift 14s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 20px) scale(1.06); }
}

.hero__dna {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 26vw;
  max-width: 340px;
  opacity: 0.8;
  pointer-events: none;
}

.dna-strand {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawStrand 3.2s var(--ease-out) 0.4s forwards;
}

.dna-strand--2 { animation-delay: 0.8s; }

@keyframes drawStrand {
  to { stroke-dashoffset: 0; }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__title {
  font-size: var(--fs-display);
  margin-top: 22px;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  font-weight: 480;
  color: var(--c-primary);
}

.hero__lede {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 46ch;
}

.hero__lede strong { color: var(--c-ink); }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  max-width: 520px;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-muted);
}

.hero__trust svg { color: var(--c-rose-deep); flex: 0 0 auto; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__img-wrap {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-primary-soft);
}

.hero__img-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(250, 248, 242, 0.45);
  border-radius: calc(var(--r-lg) - 10px);
  z-index: 2;
  pointer-events: none;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img-wrap .img-caption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  color: rgba(250, 248, 242, 0.92);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(67, 32, 46, 0.6);
}

.hero__img-wrap .img-caption svg { color: var(--c-rose); }

.hero__float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: floatY 6s ease-in-out infinite;
}

.hero__float--a { top: 8%; left: -6%; }
.hero__float--b { bottom: 10%; right: -4%; animation-delay: 2.4s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero__float strong { display: block; font-size: 0.92rem; }
.hero__float small { display: block; font-size: 0.78rem; color: var(--c-muted); }

.hero__float-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: grid;
  place-items: center;
}

.hero__float-icon--rose {
  background: var(--c-rose-soft);
  color: var(--c-rose-deep);
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__img-wrap { width: min(100%, 340px); }
  .hero__float--a { left: -2%; }
  .hero__float--b { right: -2%; }
  .hero { min-height: 0; }
}

@media (max-width: 640px) {
  .hero__float { padding: 10px 14px; }
  .hero__float-icon { width: 36px; height: 36px; }
  .hero__dna { display: none; }
}

/* ---------- Programme spotlight ---------- */

.prog {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 72px);
}

.prog + .prog { border-top: 1px solid var(--c-line); }

@media (max-width: 900px) {
  .prog { grid-template-columns: 1fr; }
  .prog--reverse .prog__media { order: 1; }
}

.prog__tag {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
  margin-bottom: 16px;
}

.prog__card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.prog__card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 90%;
  background: radial-gradient(circle, rgba(200, 88, 134, 0.08), transparent 70%);
  pointer-events: none;
}

.prog__card--rose::after {
  background: radial-gradient(circle, rgba(241, 146, 152, 0.12), transparent 70%);
}

.prog__card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.prog__acronym {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--c-primary);
  border: 1px solid var(--c-line);
  background: var(--c-primary-soft);
  border-radius: 18px;
  padding: 12px 16px;
  line-height: 1;
  flex: 0 0 auto;
}

.prog__card--rose .prog__acronym {
  color: var(--c-rose-deep);
  background: var(--c-rose-soft);
}

.prog__card-head h3 { margin-bottom: 4px; }
.prog__card-head p { color: var(--c-muted); font-size: 0.92rem; }

.prog__score {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px 16px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted);
  position: relative;
  z-index: 1;
}

.prog__score i {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--c-primary), #E58FB4);
  width: var(--w, 50%);
}

.prog__card--rose .prog__score i {
  background: linear-gradient(90deg, var(--c-rose-deep), var(--c-rose));
}

.prog__note {
  font-size: var(--fs-small);
  color: var(--c-muted);
  position: relative;
  z-index: 1;
}

.prog__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.prog__pills span {
  background: var(--c-primary-soft);
  color: var(--c-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill);
}

.prog__body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 16px;
}

.prog__body > p {
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.prog__body .tick-list { margin-bottom: 24px; }

/* ---------- Spotlight cards (child & women) ---------- */

.spotlight {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}

.spotlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spotlight__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.spotlight__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.spotlight:hover .spotlight__img img { transform: scale(1.04); }

.spotlight__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(250, 248, 242, 0.88);
  color: var(--c-ink);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}

.spotlight__body {
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  gap: 12px;
}

.spotlight__body p { color: var(--c-muted); }
