/* BookMyClinic shared landing styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0f172a;
  --slate: #1e293b;
  --blue: #2563eb;
  --sky: #38bdf8;
  --teal: #0d9488;
  --green: #10b981;
  --amber: #f59e0b;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.62);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  height: 64px; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(15,23,42,0.92), rgba(15,23,42,0.55), transparent);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; letter-spacing: -0.4px;
  text-decoration: none; color: var(--white);
}
.nav-brand span { color: var(--sky); }
.nav-link {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--sky); }

/* Full-bleed hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.35) 0%, rgba(15,23,42,0.55) 42%, rgba(15,23,42,0.92) 100%),
    radial-gradient(ellipse at 20% 10%, rgba(37,99,235,0.28), transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 120px 24px 56px;
  animation: riseIn 0.8s cubic-bezier(0.22,0.61,0.36,1) both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 1;
  margin-bottom: 18px;
}
.brand-mark span { color: var(--sky); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.2;
  max-width: 18ch;
  margin-bottom: 12px;
}
.hero p {
  font-size: clamp(15px, 2.4vw, 17px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 28px;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: riseIn 0.8s 0.12s cubic-bezier(0.22,0.61,0.36,1) both;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 24px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,99,235,0.35);
}
.btn-primary:hover { background: #1d4ed8; }
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 30px rgba(13,148,136,0.35);
}
.btn-teal:hover { background: #0f766e; }
.btn-green {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 10px 30px rgba(22,163,74,0.35);
}
.btn-green:hover { background: #15803d; }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1ebe5d; }

/* One-job sections */
.section {
  padding: 72px 24px;
  max-width: 880px;
  margin: 0 auto;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section > p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 28px;
}
.section.alt {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(37,99,235,0.12), transparent 45%),
    linear-gradient(180deg, #0b1220, #0f172a);
}
.section.teal-wash {
  background:
    radial-gradient(ellipse at 10% 30%, rgba(13,148,136,0.16), transparent 50%),
    linear-gradient(180deg, #0b1620, #0f172a);
}
.section.green-wash {
  background:
    radial-gradient(ellipse at 70% 10%, rgba(16,185,129,0.14), transparent 45%),
    linear-gradient(180deg, #0b1418, #0f172a);
}

.steps {
  display: grid;
  gap: 18px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 16px;
  background: rgba(37,99,235,0.18);
  color: var(--sky);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  margin-bottom: 4px;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.cta-band {
  padding: 72px 24px 88px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,0.22), transparent 55%),
    var(--navy);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.55);
  margin: 0 auto 28px;
  max-width: 36ch;
  line-height: 1.6;
}
.cta-band .cta-row { justify-content: center; }

footer {
  padding: 28px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
footer a:hover { color: var(--sky); }
.footer-links { margin-bottom: 10px; }

@media (min-width: 768px) {
  .hero-content { padding: 140px 48px 72px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .step { grid-template-columns: 1fr; }
}

/* benefit landing prose */
.nav-links { display: flex; gap: 18px; align-items: center; }
.prose-section .prose p {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 62ch;
  margin-bottom: 18px;
}
.evidence-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  max-width: 62ch;
}
.evidence-list li {
  position: relative;
  padding: 14px 16px 14px 18px;
  border-left: 3px solid rgba(56,189,248,0.55);
  background: linear-gradient(90deg, rgba(37,99,235,0.12), transparent 85%);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.55;
}
.related-section h2 { margin-bottom: 16px; }
.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-item {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.related-item:hover {
  border-color: rgba(56,189,248,0.45);
  background: rgba(56,189,248,0.1);
  transform: translateY(-1px);
}
