:root {
  --rose: #32136F;
  --rose-dark: #24104F;
  --teal: #5B2AA7;
  --gold: #C99A3A;
  --gold-light: #F6D9B8;
  --bg-soft: #F4EFFC;
  --ink: #211A32;
  --ink-soft: #655D73;
  --line: rgba(50, 19, 111, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 96px; }
body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
#root { display: none !important; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .wrap { padding: 0 24px; } }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(91, 42, 167, .5); }
  70% { box-shadow: 0 0 0 16px rgba(91, 42, 167, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 42, 167, 0); }
}
@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

.icon { width: 16px; height: 16px; flex-shrink: 0; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 20px; height: 20px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: 999px;
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 10px 22px rgba(50,19,111,.28); }
.btn-primary:hover { background: var(--teal); }
.btn-call {
  background: #fff; color: var(--rose); border: 1.5px solid var(--line);
  box-shadow: 0 4px 14px rgba(50,19,111,.08);
}
.btn-wa { background: #25D366; color: #fff !important; }
.btn-gold { background: var(--gold); color: var(--rose-dark); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }

.announce {
  background: var(--rose-dark); color: #fff; text-align: center;
  font-size: 12.5px; padding: 9px 16px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.announce strong { color: var(--gold-light); }
.announce a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.spark { color: var(--gold); animation: floatSlow 3s ease-in-out infinite; }

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .2s;
}
header.scrolled { box-shadow: 0 8px 24px rgba(36,16,79,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rose), var(--teal));
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(50,19,111,.25);
}
.brand-text { min-width: 0; }
.brand-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.brand-text strong { font-size: 16px; color: var(--rose-dark); display: block; line-height: 1.15; }
.fert-pill {
  font-size: 11px; font-weight: 700; color: var(--teal); background: var(--bg-soft);
  border: 1px solid rgba(91,42,167,.2); padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.brand-sub { font-size: 11.5px; color: var(--ink-soft); font-weight: 600; display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.nav-links { display: none; gap: 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--rose); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--teal); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta .btn-primary { display: none; }
.menu-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--rose-dark);
}
@media (min-width: 640px) {
  .nav-cta .btn-primary { display: inline-flex; }
}
@media (min-width: 1100px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .brand-text strong { font-size: 17px; }
}

.drawer { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(15,6,30,.55); }
.drawer.open { display: block; animation: fadeUp .2s ease; }
.drawer-panel { margin-left: auto; width: min(340px, 90vw); height: 100%; background: #fff; padding: 20px; overflow: auto; }
.drawer-panel a { display: flex; align-items: center; gap: 10px; padding: 12px 4px; font-weight: 700; color: var(--rose-dark); border-bottom: 1px solid var(--line); }

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0a3e 0%, var(--rose) 50%, var(--teal) 100%);
  padding: 18px 0 40px;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.9) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}
.hero-glow {
  position: absolute; right: -8%; top: -20%; width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(201,154,58,.28), transparent 70%); pointer-events: none;
}
.hero-head { position: relative; z-index: 2; display: none; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 12px;
}
.hero h1 { color: #fff; font-size: clamp(10px, 3.6vw, 16px); font-weight: 700; line-height: 1.12; max-width: 50ch; }
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.urgent {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px); border-radius: 16px; padding: 12px 16px; color: #fff; min-width: 230px;
}
.urgent small { display: block; opacity: .75; font-size: 12px; }
.urgent a { display: flex; align-items: center; gap: 8px; color: var(--gold-light); font-weight: 800; font-size: 18px; margin-top: 2px; }

/* Mobile order: carousel → stats → title → form */
.hero-stack { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; }
.hero-carousel { order: 1; }
.hero-stats-m { order: 2; }
.hero-title-m { order: 3; text-align: center; color: #fff; }
.hero-title-m h2 { color: #fff; font-size: 22px; font-weight: 700; }
.hero-title-m p { color: rgba(255,255,255,.8); font-size: 13px; }
.hero-form { order: 4; }
@media (min-width: 900px) {
  .hero { padding: 28px 0 0; }
  .hero-head { display: flex; }
  .hero-title-m, .hero-stats-m { display: none; }
  .hero-stack {
    display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: stretch; padding-bottom: 28px;
  }
  .hero-form { order: unset; }
  .hero-carousel { order: unset; }
}

.carousel {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 28px 50px -18px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.16); background: #12082a;
}
@media (min-width: 900px) { .carousel { aspect-ratio: auto; min-height: 520px; height: 100%; } }
.slides { position: relative; width: 100%; height: 100%; min-height: 280px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 6s ease; }
.slide.active img { transform: scale(1); }
.slide-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,8,40,.78) 0%, rgba(20,8,40,.15) 45%, transparent 70%); }
.badge-l, .badge-r {
  position: absolute; top: 14px; z-index: 3; font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}
.badge-l { left: 14px; background: rgba(36,16,79,.88); color: var(--gold-light); border: 1px solid rgba(255,255,255,.2); }
.badge-r { right: 14px; background: #fff; color: var(--rose); }
.doc-chip {
  position: absolute; top: 54px; right: 14px; z-index: 3;
  display: flex; align-items: center; gap: 8px; background: #fff; padding: 6px 12px 6px 6px;
  border-radius: 999px; box-shadow: 0 10px 24px rgba(0,0,0,.22); animation: floatSlow 4s ease-in-out infinite;
  border: 1px solid rgba(201,154,58,.35);
}
.doc-chip img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rose); }
.doc-chip b { display: block; font-size: 12px; color: var(--rose-dark); line-height: 1.1; }
.doc-chip span { font-size: 10.5px; color: var(--teal); font-weight: 700; }
.cap { position: absolute; left: 18px; right: 18px; bottom: 48px; z-index: 3; color: #fff; }
.cap h3 { color: #fff; font-size: clamp(18px, 2.4vw, 26px); font-weight: 700; margin-bottom: 6px; }
.cap p { font-size: 13px; color: rgba(255,255,255,.88); max-width: 46ch; }
.c-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.4); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: .85; transition: background .2s, opacity .2s;
}
.c-nav:hover { background: rgba(0,0,0,.7); opacity: 1; }
.c-nav.prev { left: 10px; }
.c-nav.next { right: 10px; }
.c-dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 4; display: flex; justify-content: center; gap: 7px; }
.c-dot { width: 8px; height: 8px; border: none; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: width .25s, background .25s; }
.c-dot.active { width: 22px; border-radius: 6px; background: var(--gold); }

.stats-card {
  background: #fff; border-radius: 16px; padding: 12px 6px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.4);
}
.stat { text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n { display: block; font-size: 15px; font-weight: 800; color: var(--rose); }
.stat .l { font-size: 9px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; }

.d-stats { display: none; background: rgba(0,0,0,.16); border-top: 1px solid rgba(255,255,255,.14); }
.d-stats .row { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; padding: 22px 0; }
.d-stats .n { color: #fff; font-size: 26px; font-weight: 700; display: block; }
.d-stats .l { color: var(--gold-light); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
@media (min-width: 900px) { .d-stats { display: block; } }

.form-card {
  background: #fff; border-radius: 22px; padding: 24px 22px 18px; position: relative; overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,.45); animation: fadeUp .45s ease;
}
.form-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--teal), var(--gold));
}
.chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal);
  background: var(--bg-soft); border: 1px solid rgba(91,42,167,.2); border-radius: 999px; padding: 5px 10px; margin-bottom: 8px;
}
.form-card h3 { font-size: 20px; font-weight: 800; color: var(--rose-dark); margin-bottom: 4px; }
.form-card .sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.req { color: #c0392b; }
.input {
  display: flex; align-items: center; gap: 8px; background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: 14px; padding: 0 12px; transition: border-color .15s, box-shadow .15s, background .15s;
}
.input:focus-within { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(91,42,167,.12); }
.input input { flex: 1; border: none; background: transparent; padding: 13px 4px; font-size: 14px; outline: none; min-width: 0; color: var(--ink); }
.input .ico { color: var(--teal); }
.phone-box { display: flex; border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--bg-soft); transition: border-color .15s, box-shadow .15s; }
.phone-box:focus-within { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(91,42,167,.12); background: #fff; }
.phone-pre {
  display: flex; align-items: center; gap: 6px; padding: 0 12px; background: #ebe4f8;
  font-weight: 800; font-size: 13px; color: var(--rose-dark); border-right: 1px solid var(--line); white-space: nowrap;
}
.phone-box .input { border: none; border-radius: 0; flex: 1; box-shadow: none; background: transparent; }
.pills { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills label {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--bg-soft); font-size: 13px; font-weight: 700; color: var(--ink-soft); cursor: pointer; transition: .18s;
}
.pills input:checked + label { background: var(--rose); color: #fff; border-color: var(--rose); box-shadow: 0 8px 18px rgba(50,19,111,.25); }
.check { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--ink-soft); margin: 8px 0; }
.check input { margin-top: 3px; accent-color: var(--rose); }
.wa-box {
  display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--rose-dark);
  background: #ecfdf3; border: 1px solid #bbf7d0; border-radius: 12px; padding: 10px 12px; margin: 8px 0 12px;
}
.wa-box input { accent-color: #16a34a; }
.submit { width: 100%; padding: 14px; font-size: 15px; position: relative; overflow: hidden; }
.submit[disabled] { opacity: .65; cursor: not-allowed; }
.trust { display: flex; justify-content: space-between; gap: 6px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.msg { display: none; margin-top: 10px; font-size: 13px; }
.msg.show { display: block; }
.msg.ok { color: #157347; }
.msg.err { color: #b42318; }
.thanks { display: none; text-align: center; padding: 8px 0 4px; animation: fadeUp .35s ease; }
.thanks.show { display: block; }
.ok-ico { width: 56px; height: 56px; border-radius: 50%; background: #ecfdf3; color: #157347; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }

section { padding: 72px 0; }
.s-head { max-width: 640px; margin-bottom: 36px; }
.s-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.s-head h2 { text-transform: capitalize; font-size: clamp(24px, 3.4vw, 36px); color: var(--rose-dark); font-weight: 700; margin-top: 10px; }
.s-head p { color: var(--ink-soft); margin-top: 10px; }
.ey {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
}
.ey::before { content: ""; width: 18px; height: 1px; background: var(--teal); }
.ey.light { color: var(--gold-light); }
.ey.light::before { background: var(--gold); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px -16px rgba(36,16,79,.28); border-color: var(--teal); }
.ic-box {
  width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); color: var(--rose);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.g3 { display: grid; gap: 16px; }
@media (min-width: 640px) { .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .g3 { grid-template-columns: repeat(3, 1fr); } }
.g4 { display: grid; gap: 16px; }
@media (min-width: 640px) { .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .g4 { grid-template-columns: repeat(4, 1fr); } }

.quiz-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: 0 16px 34px -20px rgba(36,16,79,.28); }
.qbar { height: 6px; background: #eee; border-radius: 99px; overflow: hidden; margin-bottom: 16px; }
.qbar span { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--rose), var(--teal)); transition: width .35s; }
.qq { font-size: 18px; font-weight: 700; color: var(--rose-dark); margin-bottom: 12px; }
.qopt {
  width: 100%; text-align: left; padding: 14px 16px; margin-bottom: 8px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--bg-soft); cursor: pointer; font-weight: 600; transition: .18s;
}
.qopt:hover { border-color: var(--teal); transform: translateX(4px); }
.qres { display: none; }
.qres.show { display: block; animation: fadeUp .3s ease; }

.cta {
  margin-top: 28px; background: linear-gradient(90deg, var(--rose-dark), var(--teal));
  color: #fff; border-radius: 18px; padding: 22px; display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
}
.cta h4 { color: #fff; font-size: 18px; }

.about { background: var(--bg-soft); }
.about-g { display: grid; gap: 36px; }
@media (min-width: 900px) { .about-g { grid-template-columns: 1.15fr .85fr; align-items: center; } }
.quote { font-style: italic; font-size: 18px; color: var(--rose-dark); border-left: 3px solid var(--gold); padding-left: 16px; margin: 16px 0; }
.pills-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--rose-dark); }
.photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; position: relative; box-shadow: 0 26px 50px -20px rgba(36,16,79,.35); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-b { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(36,16,79,.92); color: #fff; border-radius: 12px; padding: 12px; }
.photo-b small { color: var(--gold-light); }

.award { border-radius: 16px; padding: 26px 16px; text-align: center; color: #fff; transition: transform .25s; }
.award:hover { transform: translateY(-6px); }
.award:nth-child(1) { background: linear-gradient(150deg, var(--rose), var(--teal)); }
.award:nth-child(2) { background: linear-gradient(150deg, var(--rose-dark), var(--rose)); }
.award:nth-child(3) { background: linear-gradient(150deg, var(--teal), #8B5FC9); }
.award:nth-child(4) { background: linear-gradient(150deg, var(--gold), var(--rose-dark)); }
.medal { width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; }
.award h3 { color: #fff; font-size: 15px; }
.award p { font-size: 12px; color: rgba(255,255,255,.85); }

.treat { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: transform .22s, box-shadow .22s; }
.treat:hover { transform: translateY(-5px); box-shadow: 0 18px 34px -16px rgba(36,16,79,.3); }
.timg { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; color: #fff; }
.treat:nth-child(7n+1) .timg { background: linear-gradient(150deg, var(--rose), var(--teal)); }
.treat:nth-child(7n+2) .timg { background: linear-gradient(150deg, var(--rose-dark), var(--rose)); }
.treat:nth-child(7n+3) .timg { background: linear-gradient(150deg, var(--teal), #8B5FC9); }
.treat:nth-child(7n+4) .timg { background: linear-gradient(150deg, var(--gold), var(--rose-dark)); }
.treat:nth-child(7n+5) .timg { background: linear-gradient(150deg, var(--rose), var(--gold)); }
.treat:nth-child(7n+6) .timg { background: linear-gradient(150deg, #8B5FC9, var(--rose-dark)); }
.treat:nth-child(7n+7) .timg { background: linear-gradient(150deg, var(--teal), var(--rose)); }
.tbody { padding: 16px; }
.tag { font-size: 10px; color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.tabs { display: flex; gap: 6px; background: var(--bg-soft); padding: 6px; border-radius: 16px; width: fit-content; margin: 0 auto 24px; border: 1px solid var(--line); }
.tabs button { border: none; background: transparent; padding: 10px 14px; border-radius: 12px; font-weight: 700; cursor: pointer; color: var(--ink-soft); font-size: 13px; }
.tabs button.active { background: var(--rose); color: #fff; }
.svc-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(4,1fr); } }
.svc { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; cursor: pointer; transition: transform .22s, box-shadow .22s; }
.svc:hover { transform: translateY(-5px); box-shadow: 0 16px 32px -16px rgba(36,16,79,.3); }
.svc.popular { box-shadow: 0 0 0 2px var(--gold); }
.svc-ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 10px; }
.svc:nth-child(4n+1) .svc-ico { background: linear-gradient(150deg, var(--rose), var(--teal)); }
.svc:nth-child(4n+2) .svc-ico { background: linear-gradient(150deg, var(--rose-dark), var(--rose)); }
.svc:nth-child(4n+3) .svc-ico { background: linear-gradient(150deg, var(--teal), #8B5FC9); }
.svc:nth-child(4n+4) .svc-ico { background: linear-gradient(150deg, var(--gold), var(--rose-dark)); }
.hot { position: absolute; top: 12px; right: 12px; background: var(--gold); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.idx { display: block; font-size: 11px; color: var(--gold); font-weight: 800; margin-bottom: 4px; }
.svc h3 { font-size: 15px; color: var(--rose-dark); margin-bottom: 6px; }
.svc p { font-size: 12.5px; color: var(--ink-soft); }
.svc-grid .svc:nth-child(n+5) { display: none; }
.svc-grid.expanded .svc:nth-child(n+5) { display: block; animation: fadeUp .35s ease; }
.more { display: flex; justify-content: center; margin-top: 24px; }
.more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; cursor: pointer; color: var(--rose-dark); }

.stories { background: var(--rose-dark); color: #fff; }
.stories h2 { color: #fff; }
.story { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 20px; transition: transform .22s, background .22s; }
.story:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.story p { font-size: 13.5px; color: rgba(255,255,255,.88); margin: 10px 0 14px; }
.sf { display: flex; align-items: center; gap: 10px; }
.av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(150deg, var(--gold), var(--rose)); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.stars { color: var(--gold); font-size: 11px; }
.agg { margin-top: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 16px; display: grid; gap: 12px; text-align: center; }
@media (min-width: 640px) { .agg { grid-template-columns: repeat(3,1fr); } }
.agg b { display: block; font-size: 22px; color: var(--gold-light); }

.vcard { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.vcard:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(36,16,79,.28); }
.vframe { position: relative; aspect-ratio: 9/16; background: #111; }
.vframe-main { position: relative; aspect-ratio: 16/9; background: #111; }
.vframe-main iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vmeta { padding: 14px; }
.vt { display: inline-block; font-size: 10px; color: #fff; background: var(--rose); padding: 3px 8px; border-radius: 999px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.centre { background: var(--bg-soft); }
.showcase { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 860px) { .showcase { flex-direction: row; } }
.vmain { flex: 1; }
.vreel { width: 100%; max-width: 260px; margin: 0 auto; }
@media (min-width: 860px) { .vreel { width: 320px; margin: 0; } }
.vert { aspect-ratio: 9/16; }

.process { background: var(--bg-soft); }
.steps { display: grid; gap: 16px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; text-align: center; transition: transform .22s; }
.step:hover { transform: translateY(-4px); }
.circle { width: 48px; height: 48px; border-radius: 50%; background: var(--rose); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 12px; }
.step p { font-size: 13px; color: var(--ink-soft); }

.gallery { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.gallery img { height: 220px; width: auto; border-radius: 12px; flex-shrink: 0; cursor: pointer; transition: transform .2s; }
.gallery img:hover { transform: scale(1.03); }

.clinic { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.clinic.main { box-shadow: 0 0 0 2px var(--gold); }
.clinic p { font-size: 14px; color: var(--ink-soft); flex: 1; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 16px 4px; display: flex; justify-content: space-between; gap: 12px; font-weight: 700; font-size: 15px; color: var(--rose-dark); cursor: pointer; }
.plus { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s, color .25s; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--rose); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-a p { padding: 0 4px 16px; color: var(--ink-soft); font-size: 14px; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-search { width: 100%; max-width: 440px; margin: 0 auto 18px; display: block; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 16px; }

.contact { background: var(--rose-dark); color: #fff; text-align: center; }
.contact h2 { color: #fff; }
.clist { max-width: 480px; margin: 22px auto 0; display: grid; gap: 10px; text-align: left; }
.clist a, .clist div { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.hours { max-width: 480px; margin: 18px auto 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 16px; text-align: left; }
.hours .cap { color: var(--gold); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; margin-bottom: 8px; }
.hours .r { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }

footer { background: #170c31; color: rgba(255,255,255,.7); padding: 48px 0 110px; font-size: 13.5px; }
@media (min-width: 900px) { footer { padding-bottom: 36px; } }
.fg { display: grid; gap: 28px; }
@media (min-width: 720px) { .fg { grid-template-columns: 1.4fr 1fr 1fr; } }
footer h4 { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
footer ul { list-style: none; display: grid; gap: 8px; }
.fb { margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; color: rgba(255,255,255,.4); }

.sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; padding: 10px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; box-shadow: 0 -10px 30px rgba(0,0,0,.15);
}
.sticky .btn { padding: 13px 10px; border-radius: 12px; }
@media (min-width: 900px) { .sticky { display: none; } }

.fab {
  display: none; position: fixed; bottom: 24px; z-index: 70; width: 56px; height: 56px; border-radius: 50%;
  align-items: center; justify-content: center; color: #fff; transition: transform .18s;
}
.fab:hover { transform: translateY(-3px) scale(1.04); }
.fab-call { left: 22px; background: var(--teal); animation: pulseGlow 2.4s infinite; }
.fab-wa { right: 22px; background: #25D366; animation: pulseWa 2.4s infinite; }
@media (min-width: 900px) { .fab { display: flex; } }

.vfab {
  display: none; position: fixed; left: 22px; bottom: 92px; z-index: 69; width: 168px; background: #fff;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 16px 34px rgba(0,0,0,.28); cursor: pointer;
}
.vfab.show { display: block; animation: fadeUp .35s ease; }
.vfab.hide { display: none !important; }
.vf-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--rose-dark), var(--teal)); position: relative; }
.vf-play { position: absolute; inset: 0; margin: auto; width: 36px; height: 36px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); }
.vf-label { padding: 8px 10px; font-size: 11px; color: var(--ink-soft); }
.vf-label b { display: block; color: var(--rose-dark); }
.vf-x { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; border: none; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; cursor: pointer; z-index: 2; }
@media (max-width: 420px) { .vfab { display: none !important; } }

.modal, .lightbox {
  display: none; position: fixed; inset: 0; z-index: 100; background: rgba(15,6,10,.82);
  align-items: center; justify-content: center; padding: 16px;
}
.modal.open, .lightbox.open { display: flex; animation: fadeUp .25s ease; }
.modal-box { width: 100%; max-width: 480px; max-height: 92vh; overflow: auto; }
.vm-box { width: 100%; max-width: 760px; aspect-ratio: 16/9; background: #000; border-radius: 12px; position: relative; }
.vm-box iframe { width: 100%; height: 100%; border: none; }
.x { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 12px; }

.card { position: relative; overflow: hidden; }
.card .ic-box { transition: background .22s, color .22s, transform .22s; }
.card:hover .ic-box { background: var(--rose); color: #fff; transform: scale(1.06); }
.card h3 { font-size: 17px; color: var(--rose-dark); margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--ink-soft); }
.go {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 12px; font-weight: 700; color: var(--teal);
  opacity: 0; transform: translateY(6px); transition: opacity .22s, transform .22s;
}
.card:hover .go, .treat:hover .go, .svc:hover .go { opacity: 1; transform: translateY(0); }
.treat .go, .svc .go { opacity: 1; transform: none; }

.photo-wrap { max-width: 420px; margin: 0 auto; background: #fff; border-radius: 22px; padding: 8px; box-shadow: 0 26px 50px -20px rgba(36,16,79,.35); }
.photo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 10px 6px 6px; text-align: center; }
.photo-stats div { background: var(--bg-soft); border-radius: 12px; padding: 10px 6px; }
.photo-stats b { display: block; color: var(--rose); font-size: 16px; }
.photo-stats span { font-size: 10px; color: var(--ink-soft); font-weight: 700; }
.pill { display: inline-flex; align-items: center; gap: 5px; }

.timg svg { width: 42px; height: 42px; }
.qmark { position: absolute; top: 8px; right: 16px; font-size: 64px; line-height: 1; color: rgba(255,255,255,.12); pointer-events: none; }
.story { position: relative; overflow: hidden; }
.story .tag { color: var(--gold); font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vcard { position: relative; }
.vcard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2; }
.vcard:nth-child(3n+1)::before { background: linear-gradient(90deg, var(--rose), var(--teal)); }
.vcard:nth-child(3n+2)::before { background: linear-gradient(90deg, var(--rose-dark), var(--rose)); }
.vcard:nth-child(3n+3)::before { background: linear-gradient(90deg, var(--teal), var(--gold)); }

.step-ico { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; color: var(--teal); }
.clinic-time { display: flex; align-items: flex-start; gap: 8px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font-size: 12px; color: var(--ink-soft); }
.maps { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--rose-dark); }
.outbox {
  margin-top: 28px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.faq-cta { margin-top: 28px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 22px; padding: 22px; text-align: center; }
.search-wrap { position: relative; max-width: 440px; margin: 0 auto 18px; }
.search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #999; }
.search-wrap input { padding-left: 40px; width: 100%; }

.clist a:hover, .clist div:hover { background: rgba(255,255,255,.14); }
.ci { width: 40px; height: 40px; border-radius: 12px; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.reveal { opacity: 0; transform: translateY(18px); animation: fadeUp .55s ease forwards; }
.d1 { animation-delay: .05s; }
.d2 { animation-delay: .12s; }
.d3 { animation-delay: .18s; }
.d4 { animation-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


.services h4 {
    padding-bottom: 20px;
    max-width: max-content;
    background: linear-gradient(90deg, var(--rose), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 700;
}

.services h4:nth-child(1) {
    margin-top: 40px;
}

/* Thank You page */
.thankyou-hero{background:linear-gradient(135deg, var(--rose-dark), var(--teal)); color:#fff; padding:96px 0 84px; text-align:center;}
.thankyou-icon{width:80px; height:80px; border-radius:50%; background:rgba(255,255,255,.12); border:2px solid rgba(255,255,255,.4); display:flex; align-items:center; justify-content:center; margin:0 auto 26px;}
.thankyou-icon svg{width:36px; height:36px;}
.thankyou-hero .eyebrow{justify-content:center; margin-bottom:6px;}
.thankyou-hero h1{color:#fff; font-size:clamp(30px,4.6vw,46px); max-width:18ch; margin:0 auto 16px;}
.thankyou-hero p.lead{color:rgba(255,255,255,.85); max-width:52ch; margin:0 auto 34px; font-size:16.5px;}
.thankyou-actions{display:flex; flex-wrap:wrap; gap:14px; justify-content:center;}
.thankyou-back{display:block; margin-top:22px; color:rgba(255,255,255,.7); font-size:13.5px; font-family:var(--mono); text-decoration:none;}
.thankyou-back:hover{color:#fff;}
.next-steps{display:grid; gap:22px; margin-top:20px; grid-template-columns:minmax(0,1fr);}
@media(min-width:720px){.next-steps{grid-template-columns:repeat(3,1fr);}}

/* Process */
.process{background:var(--bg-soft);}
.process-row{display:grid; gap:28px; margin-top:20px; grid-template-columns:minmax(0,1fr);}
@media(min-width:900px){.process-row{grid-template-columns:repeat(4,1fr);}}
.process-step{background:var(--card); border-radius:var(--radius); border:1px solid var(--line); padding:26px; text-align:center;}
.process-step .circle{width:52px; height:52px; border-radius:50%; background:var(--rose); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:19px; margin:0 auto 16px;}
.process-step h3{font-size:16.5px; margin-bottom:6px;}
.process-step p{font-size:13.5px; color:var(--ink-soft);}

footer{background:#170c31; color:rgba(255,255,255,.7); padding:48px 0 28px; font-size:13.5px;}
.footer-grid{display:grid; gap:30px; grid-template-columns:minmax(0,1fr);}
@media(min-width:720px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr;}}
footer h4{font-family:var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:14px;}
footer ul{list-style:none; display:grid; gap:10px; grid-template-columns:minmax(0,1fr);}
footer a{text-decoration:none; color:rgba(255,255,255,.75);}
footer a:hover{color:#fff;}
.footer-bottom{margin-top:36px; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); font-size:12px; color:rgba(255,255,255,.4);}

/* ---------- IVF price strip (after Services) ---------- */
.price-strip{
    margin-top: 40px;
    border-radius: 20px;
    padding: 22px 26px;
    background: linear-gradient(135deg, var(--rose), var(--teal));
    color: #fff;
    box-shadow: 0 20px 44px -18px rgba(50,19,111,.55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.price-strip .ps-ey{
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-light);
}
.price-strip .ps-line{ margin-top: 8px; }
.price-strip .ps-amt{ font-size: clamp(20px, 4vw, 28px); font-weight: 800; }
.price-strip .ps-amt b{ font-weight: 900; }
.price-strip .ps-amt sup{ font-size: .5em; opacity: .8; }
.price-strip .ps-tags{
    display: block; margin-top: 4px;
    font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.82);
}
.price-strip .btn-primary{
    background: #fff; color: var(--rose); flex-shrink: 0;
}
.price-strip .btn-primary:hover{ background: var(--gold-light); }
@media (max-width: 560px){
    .price-strip{ flex-direction: column; align-items: flex-start; }
    .price-strip .btn-primary{ width: 100%; }
}

.logo{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    /* Artwork ships in blue — nudge its hue onto the purple brand palette */
    filter: hue-rotate(38deg) saturate(1.12) brightness(.97);
    box-shadow: 0 8px 18px rgba(50,19,111,.28);
    border: 2px solid rgba(255,255,255,.9);
}

/* ---------- Header: mobile tidy-up ---------- */
.brand-row { flex-wrap: nowrap; }
.brand-text strong { white-space: nowrap; }

@media (max-width: 1099px) {
  .nav { gap: 10px; }
  /* WhatsApp already lives in the drawer on mobile */
  .nav-cta .hero-form-m { display: none; }
  /* Call collapses to an icon-only button */
  .nav-cta .btn-call {
    padding: 10px;
    gap: 0;
    font-size: 0;
    line-height: 0;
  }
  .nav-cta .btn-call .icon { width: 18px; height: 18px; }
  .nav{
    padding: 12px 20px;
  }
}

@media (max-width: 520px) {
  .brand .fert-pill { display: none; }
  .brand-sub {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 54vw;
  }
  
}

@media (max-width: 380px) {
  .brand-sub { display: none; }
  .brand-text strong { font-size: 15px; }
  .brand { gap: 8px; }
}
.capitalize { text-transform: capitalize; }