/* Flowcare Homepage v2 — Brand-aligned (navy #0E2F6B + cyan #1FC3C7) */

.fc-page {
  --bg: #0a1838;
  --bg-2: #0E2F6B;
  --ink: #f5f9ff;
  --ink-2: rgba(245, 249, 255, 0.75);
  --ink-3: rgba(245, 249, 255, 0.5);
  --line: rgba(255, 255, 255, 0.10);

  --navy: #0E2F6B;
  --navy-deep: #07173d;
  --navy-2: #1a3d8a;
  --cyan: #1FC3C7;
  --cyan-2: #5BD9DC;
  --cyan-deep: #0a8a8d;
  --gold: #f4b942;
  --coral: #ff6b6b;

  /* Light tokens */
  --light-bg: #f0f7fa;
  --light-bg-2: #ffffff;
  --light-bg-tint: #e6f3f5;
  --light-ink: #0E2F6B;
  --light-ink-2: #3d4f72;
  --light-ink-3: #7a85a0;
  --light-line: rgba(14, 47, 107, 0.10);
  --light-accent: var(--cyan-deep);

  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  width: 1440px;
  position: relative;
  overflow: hidden;
}

.fc-page,
.fc-page * {
  box-sizing: border-box;
}

/* ───── HERO (dark navy with cyan glows) ──────── */
.fc-hero-wrap {
  position: relative;
  background: radial-gradient(ellipse at 20% 30%, #1a3d8a 0%, #0E2F6B 35%, #07173d 100%);
  padding-bottom: 0;
}

.fc-hero-wrap .hm-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.fc-hero-wrap .hm-ambient--1 {
  top: -180px;
  right: -120px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(31, 195, 199, 0.35), transparent 70%);
}

.fc-hero-wrap .hm-ambient--2 {
  top: 200px;
  left: -260px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(91, 217, 220, 0.18), transparent 70%);
}

.fc-hero-wrap .hm-ambient--3 {
  bottom: -200px;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.12), transparent 70%);
}

.fc-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.fc-particle {
  position: absolute;
  border-radius: 50%;
  animation: fc-drift 14s linear infinite;
}

@keyframes fc-drift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-120px) translateX(20px);
    opacity: 0;
  }
}

.fc-hero-wrap>* {
  position: relative;
  z-index: 1;
}

/* NAV */
.fc-nav {
  /* Lock header theme to homepage so inner pages can't override it via :root tokens */
  --navy: #0E2F6B;
  --navy-deep: #07173d;
  --navy-2: #1a3d8a;
  --cyan: #1FC3C7;
  --cyan-2: #5BD9DC;
  --ink-2: rgba(245, 249, 255, 0.75);
  --ink-3: rgba(245, 249, 255, 0.5);
  --line: rgba(255, 255, 255, 0.10);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 56px;
  /* Opaque so it looks identical on every page background */
  background: rgba(7, 23, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(31, 195, 199, 0.15);
}

.fc-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.fc-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fc-brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(31, 195, 199, 0.3);
  position: relative;
}

.fc-brand-logo svg {
  width: 32px;
  height: 32px;
}

.fc-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.fc-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}

.fc-brand-name .fc-flow {
  color: #fff;
}

.fc-brand-name .fc-care {
  color: var(--cyan);
}

.fc-brand-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.fc-nav-links {
  display: flex;
  gap: 30px;
  justify-self: center;
}

.fc-nav-links a {
  font-size: 14px;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: 200ms;
  font-weight: 500;
}

.fc-nav-links a:hover {
  color: var(--cyan);
}

.fc-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: 250ms;
}

.fc-nav-links a:hover::after {
  transform: scaleX(1);
}

.fc-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
}

.fc-lang-toggle button {
  background: none;
  border: none;
  padding: 5px 12px;
  border-radius: 100px;
  color: inherit;
  font: inherit;
  cursor: pointer;
  letter-spacing: inherit;
  font-weight: 600;
}

.fc-lang-toggle button.active {
  background: var(--cyan);
  color: var(--navy);
}

.fc-nav-cta {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  border: none;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 250ms;
  box-shadow: 0 8px 24px rgba(31, 195, 199, 0.35);
}

.fc-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(31, 195, 199, 0.5);
}

/* HERO CONTENT — bigger doctor side */
.fc-hero {
  padding: 50px 80px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.fc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.fc-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.fc-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: fc-dot-pulse 2s ease-in-out infinite;
}

@keyframes fc-dot-pulse {

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

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.fc-hero-hook {
  font-family: 'Inter', 'Cormorant Garamond', sans-serif;
  font-size: 76px;
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 18px 0 0;
  color: #fff;
}

.fc-hero-hook .accent {
  background: linear-gradient(135deg, var(--cyan-2) 0%, var(--cyan) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.fc-hero-hook-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 28px;
  line-height: 1.2;
  color: var(--cyan-2);
  font-weight: 500;
  margin-top: 16px;
  letter-spacing: -0.005em;
}

/* Specialties — pill row */
.fc-specs {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-spec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(31, 195, 199, 0.08);
  border: 1px solid rgba(31, 195, 199, 0.25);
  border-radius: 100px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.fc-spec-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--cyan);
  color: var(--navy);
  display: grid;
  place-items: center;
}

.fc-spec-dot svg {
  width: 11px;
  height: 11px;
}

/* Stats */
.fc-stats {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fc-stat-k {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(180deg, #fff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fc-stat-k span {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.fc-stat-v {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
}

/* DOCTOR HERO — BIG portrait */
.fc-hero-doctor-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy-deep) 100%);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(31, 195, 199, 0.2),
    inset 0 0 80px rgba(31, 195, 199, 0.08);
  min-height: 720px;
  display: flex;
  flex-direction: column;
}

.fc-hero-doctor-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(31, 195, 199, 0.35), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(244, 185, 66, 0.15), transparent 50%);
}

.fc-hero-doctor-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 195, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 195, 199, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
}

.fc-hero-doctor-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 40px;
}

.fc-hero-doctor-img img {
  width: 100%;
  height: auto;
  max-width: 540px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5)) contrast(1.05) saturate(1.05);
}

.fc-hero-doctor-img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(31, 195, 199, 0.4), transparent 70%);
  filter: blur(20px);
}

.fc-hero-doctor-name-block {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
}

.fc-hero-doctor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1;
}

.fc-hero-doctor-cred {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  font-weight: 600;
}

.fc-hero-doctor-role {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 280px;
  line-height: 1.45;
}

.fc-hero-doctor-tags {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.fc-hero-doctor-tag {
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-hero-doctor-tag b {
  color: var(--cyan);
  font-weight: 700;
}

.fc-hero-doctor-tag svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.fc-hero-doctor-cta {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 3;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(31, 195, 199, 0.95), rgba(91, 217, 220, 0.95));
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: 300ms;
  box-shadow: 0 16px 40px rgba(31, 195, 199, 0.4);
}

.fc-hero-doctor-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(31, 195, 199, 0.55);
}

.fc-hero-doctor-cta-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.fc-hero-doctor-cta-sub {
  font-size: 12px;
  color: rgba(14, 47, 107, 0.7);
  margin-top: 4px;
  font-weight: 500;
}

.fc-hero-doctor-cta-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  display: grid;
  place-items: center;
}

.fc-hero-doctor-cta-arrow svg {
  width: 20px;
  height: 20px;
}

/* Floating procedure pills around doctor */
.fc-doc-pill {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fc-pill-float 4s ease-in-out infinite;
}

.fc-doc-pill svg {
  width: 18px;
  height: 18px;
  color: var(--cyan-deep);
}

.fc-doc-pill-mini {
  font-size: 10px;
  color: var(--light-ink-3);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes fc-pill-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fc-doc-pill--1 {
  left: -16px;
  top: 220px;
  animation-delay: 0s;
}

.fc-doc-pill--2 {
  right: -10px;
  top: 350px;
  animation-delay: 1s;
}

.fc-doc-pill--3 {
  left: -20px;
  top: 460px;
  animation-delay: 2s;
}

/* LEAD FORM — moved to a row below hero */
.fc-form-row {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px 60px;
}

.fc-form {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(31, 195, 199, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 32px;
  align-items: end;
}

.fc-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(244, 185, 66, 0.15);
  border: 1px solid rgba(244, 185, 66, 0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.fc-form-eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: fc-pulse 1.4s ease-in-out infinite;
}

@keyframes fc-pulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.fc-form-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  margin: 12px 0 6px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #fff;
}

.fc-form-h i {
  color: var(--cyan-2);
  font-style: italic;
}

.fc-form-sub {
  font-size: 13px;
  color: var(--ink-2);
}

.fc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.fc-form-grid>.fc-form-cta-wrap {
  grid-column: span 3;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.fc-field {
  position: relative;
}

.fc-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.fc-field input,
.fc-field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 14px;
  transition: 200ms;
}

.fc-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.fc-field input:focus,
.fc-field select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(31, 195, 199, 0.08);
  box-shadow: 0 0 0 3px rgba(31, 195, 199, 0.18);
}

.fc-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231FC3C7' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fc-field-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px;
}

.fc-field-prefix {
  display: grid;
  place-items: center;
  padding: 13px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  font-feature-settings: 'tnum';
}

.fc-form-cta {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  border: none;
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 195, 199, 0.4);
  transition: 250ms;
}

.fc-form-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: fc-shine 3s ease-in-out infinite;
}

@keyframes fc-shine {

  0%,
  60% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.fc-form-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(31, 195, 199, 0.55);
}

.fc-form-trust-text {
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.fc-form-trust-text svg {
  width: 12px;
  height: 12px;
  color: var(--cyan);
  vertical-align: -1px;
}

.fc-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  grid-column: span 3;
  margin-top: -2px;
}

.fc-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
  margin-top: 2px;
  flex-shrink: 0;
}

.fc-consent label {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.fc-consent label a {
  color: var(--cyan);
}

/* TRUST BAR */
.fc-trust-bar {
  position: relative;
  z-index: 2;
  padding: 28px 80px;
  background: rgba(7, 23, 61, 0.5);
  border-top: 1px solid rgba(31, 195, 199, 0.15);
  border-bottom: 1px solid rgba(31, 195, 199, 0.15);
}

.fc-trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.fc-trust-claim {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.fc-trust-claim span {
  color: var(--cyan);
  font-style: italic;
  font-weight: 600;
}

.fc-trust-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.fc-trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(31, 195, 199, 0.06);
  border: 1px solid rgba(31, 195, 199, 0.2);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  text-transform: uppercase;
}

.fc-trust-logo b {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}

.fc-trust-logo svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

/* ───── LIGHT BODY — vibrant tinted ───────────── */
.fc-light {
  background:
    linear-gradient(180deg, #f0f7fa 0%, #e6f3f5 40%, #f0f7fa 100%);
  color: var(--light-ink);
  position: relative;
  overflow: hidden;
}

.fc-light::before {
  content: '';
  position: absolute;
  top: 200px;
  right: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 195, 199, 0.18), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.fc-light::after {
  content: '';
  position: absolute;
  top: 1800px;
  left: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 47, 107, 0.10), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.fc-light .fc-eyebrow {
  color: var(--cyan-deep);
}

.fc-light .fc-dot {
  background: var(--cyan-deep);
  box-shadow: 0 0 12px var(--cyan);
}

.fc-section {
  padding: 100px 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fc-section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.fc-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 16px 0 0;
  color: var(--navy);
}

.fc-h2 i {
  font-style: italic;
  color: var(--cyan-deep);
  font-weight: 600;
}

.fc-h2-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--cyan-deep);
  margin-top: 12px;
  font-weight: 500;
}

.fc-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--light-ink-2);
  max-width: 640px;
  margin-top: 22px;
}

/* TREATMENT CARDS — animated cycle */
.fc-treatments {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.fc-treatment {
  background: var(--light-bg-2);
  border-radius: 28px;
  border: 1px solid var(--light-line);
  overflow: hidden;
  transition: 400ms;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(14, 47, 107, 0.06);
  position: relative;
}

.fc-treatment:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(14, 47, 107, 0.18);
  border-color: var(--cyan);
}

.fc-treatment-vis {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, #1a3d8a 0%, #07173d 100%);
  display: grid;
  place-items: center;
}

.fc-treatment-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(31, 195, 199, 0.25), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(244, 185, 66, 0.12), transparent 50%);
}

.fc-treatment-vis::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 195, 199, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 195, 199, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
}

.fc-treatment-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(244, 185, 66, 0.18);
  border: 1px solid rgba(244, 185, 66, 0.5);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

.fc-treatment-tag .pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: fc-pulse 1.4s ease-in-out infinite;
}

/* Stage indicator — auto-cycle */
.fc-treatment-stages {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.fc-stage-pill {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 400ms;
}

.fc-stage-pill.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}

.fc-stage-pill.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  animation: fc-stage-bar 5s linear;
}

@keyframes fc-stage-bar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.fc-treatment-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 700ms ease;
  padding: 30px;
}

.fc-treatment-frame.active {
  opacity: 1;
}

.fc-treatment-frame-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80px);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.fc-treatment-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fc-treatment-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
}

.fc-treatment-hi {
  font-family: 'Noto Serif Devanagari', serif;
  color: var(--cyan-deep);
  font-size: 16px;
  margin-top: 4px;
  font-weight: 500;
}

.fc-treatment-p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-ink-2);
  margin: 16px 0 20px;
}

.fc-treatment-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 14px;
  background: var(--light-bg-tint);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 12px;
}

.fc-treatment-specs>div {
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
}

.fc-treatment-specs span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--light-ink-3);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}

.fc-treatment-specs b {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
}

.fc-treatment-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  align-self: flex-start;
  transition: 250ms;
}

.fc-treatment-cta:hover {
  background: var(--cyan-deep);
  transform: translateX(2px);
}

/* CONDITIONS — interactive body map with animated pins */
.fc-bodymap-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 16px;
}

/* LEFT — Body silhouette + pins */
.fc-bodymap {
  position: relative;
  background:
    radial-gradient(circle at 50% 40%, rgba(31, 195, 199, 0.18), transparent 60%),
    linear-gradient(160deg, #fff 0%, var(--light-bg-tint) 100%);
  border: 1px solid var(--light-line);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(14, 47, 107, 0.08);
  overflow: hidden;
  min-height: 720px;
}

.fc-bodymap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 195, 199, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 195, 199, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
  pointer-events: none;
}

.fc-bodymap-svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.fc-bodymap-eyebrow {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.fc-bodymap-eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: fc-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}

.fc-bodymap-legend {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(14, 47, 107, 0.96);
  backdrop-filter: blur(8px);
  color: #fff;
}

.fc-bodymap-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.fc-bodymap-legend-item b {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.fc-bodymap-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* PIN */
.fc-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
  transition: 250ms;
}

.fc-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: fc-pin-ring 2s ease-out infinite;
}

@keyframes fc-pin-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}

.fc-pin-dot {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(31, 195, 199, 0.5);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.fc-pin.is-active .fc-pin-dot {
  background: linear-gradient(135deg, var(--gold), #ffd778);
  color: var(--navy);
  transform: scale(1.4);
  box-shadow: 0 6px 18px rgba(244, 185, 66, 0.7);
}

.fc-pin.is-active .fc-pin-ring {
  border-color: var(--gold);
  animation-duration: 1.4s;
}

.fc-pin:hover .fc-pin-dot {
  transform: scale(1.2);
}

/* PIN connector line — drawn behind pin to active card */
.fc-pin-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 200ms;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fc-pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
}

.fc-pin:hover .fc-pin-tooltip,
.fc-pin.is-active .fc-pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* RIGHT — Featured condition card + scroll list */
.fc-cond-detail {
  background: var(--light-bg-2);
  border: 1px solid var(--light-line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 47, 107, 0.08);
  display: flex;
  flex-direction: column;
}

.fc-cond-hero {
  position: relative;
  padding: 36px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}

.fc-cond-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 195, 199, 0.4), transparent 70%);
  filter: blur(40px);
}

.fc-cond-hero>* {
  position: relative;
  z-index: 1;
}

.fc-cond-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(31, 195, 199, 0.4);
  animation: fc-cond-icon-pop 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fc-cond-icon-pop {
  0% {
    transform: scale(0.6) rotate(-15deg);
    opacity: 0;
  }

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

.fc-cond-hero-icon svg {
  width: 32px;
  height: 32px;
}

.fc-cond-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cyan-2);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.fc-cond-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  animation: fc-fade-up 500ms ease-out;
}

.fc-cond-hero-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 18px;
  color: var(--cyan);
  margin-top: 6px;
  font-weight: 500;
}

.fc-cond-hero-desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  animation: fc-fade-up 600ms ease-out;
}

@keyframes fc-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fc-cond-hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fc-cond-hero-chip {
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(31, 195, 199, 0.15);
  border: 1px solid rgba(31, 195, 199, 0.3);
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan-2);
}

.fc-cond-hero-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 220ms;
}

.fc-cond-hero-cta:hover {
  transform: translateX(2px);
  background: var(--cyan-2);
}

/* Scrollable strip of all conditions */
.fc-cond-strip {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
  overflow-y: auto;
  max-height: 320px;
}

.fc-cond-strip::-webkit-scrollbar {
  width: 6px;
}

.fc-cond-strip::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 3px;
}

.fc-cond-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--light-bg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 200ms;
  font-size: 12px;
  font-weight: 600;
  color: var(--light-ink-2);
}

.fc-cond-chip:hover {
  background: rgba(31, 195, 199, 0.1);
  color: var(--navy);
  transform: translateX(2px);
}

.fc-cond-chip.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--cyan);
}

.fc-cond-chip-pin {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

.fc-cond-chip.is-active .fc-cond-chip-pin {
  background: var(--gold);
  color: var(--navy);
}

/* SERVICES — vibrant card grid */
.fc-services-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.fc-test {
  padding: 22px 14px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff 0%, var(--light-bg-tint) 100%);
  border: 1px solid var(--light-line);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  cursor: pointer;
  transition: 250ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.fc-test-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: 300ms;
}

.fc-test-icon svg {
  width: 20px;
  height: 20px;
}

.fc-test:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(14, 47, 107, 0.25);
}

.fc-test:hover .fc-test-icon {
  background: var(--cyan);
  transform: scale(1.1) rotate(8deg);
}

/* WHY FLOWCARE — Indian-focused, simpler */
.fc-why {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ink);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.fc-why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 195, 199, 0.25), transparent 70%);
  filter: blur(70px);
}

.fc-why::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.15), transparent 70%);
  filter: blur(70px);
}

.fc-why-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.fc-why .fc-h2 {
  color: #fff;
}

.fc-why .fc-h2 i {
  color: var(--cyan-2);
}

.fc-why .fc-h2-hi {
  color: var(--cyan-2);
}

.fc-why .fc-eyebrow {
  color: var(--cyan);
}

.fc-why .fc-lede {
  color: rgba(255, 255, 255, 0.75);
}

.fc-why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fc-why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(31, 195, 199, 0.2);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: 350ms;
}

.fc-why-card:hover {
  background: rgba(31, 195, 199, 0.08);
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.fc-why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 24px rgba(31, 195, 199, 0.3);
}

.fc-why-card-icon svg {
  width: 28px;
  height: 28px;
}

.fc-why-card-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 4px;
}

.fc-why-card-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 16px;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 14px;
}

.fc-why-card-p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.fc-why-card-stat {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.fc-why-card-stat-k {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.fc-why-card-stat-v {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* DOCTOR PROFILE */
.fc-doctor-section {
  padding: 100px 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fc-doctor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.fc-doctor-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 30px 80px rgba(14, 47, 107, 0.25);
}

.fc-doctor-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(31, 195, 199, 0.4), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(244, 185, 66, 0.15), transparent 60%);
  z-index: 1;
}

.fc-doctor-photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(1.05);
  z-index: 0;
}

.fc-doctor-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-doctor-badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.fc-doctor-badge-cred {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan-deep);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.fc-doctor-badge-rating {
  text-align: right;
}

.fc-doctor-badge-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.fc-doctor-badge-rating-v {
  font-size: 10px;
  color: var(--light-ink-3);
  letter-spacing: 0.1em;
  margin-top: 3px;
  font-weight: 500;
}

.fc-doctor-creds {
  margin-top: 28px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--light-line);
}

.fc-doctor-cred {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-line);
  font-size: 14px;
  color: var(--light-ink-2);
}

.fc-doctor-cred span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan-deep);
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 2px;
}

.fc-doctor-cred b {
  color: var(--navy);
  font-weight: 600;
}

.fc-doctor-pubs {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fc-doctor-pub {
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(31, 195, 199, 0.1);
  border: 1px solid rgba(31, 195, 199, 0.3);
  font-size: 12px;
  color: var(--cyan-deep);
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* TESTIMONIALS */
.fc-testimonials {
  background: linear-gradient(180deg, transparent 0%, rgba(31, 195, 199, 0.05) 100%);
}

.fc-test-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.fc-test-card {
  background: var(--light-bg-2);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--light-line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 300ms;
  box-shadow: 0 4px 12px rgba(14, 47, 107, 0.04);
}

.fc-test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 47, 107, 0.12);
}

.fc-test-card--big {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-color: transparent;
}

.fc-test-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}

.fc-test-card--big .fc-test-quote-mark {
  color: var(--cyan);
}

.fc-test-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--navy);
  flex: 1;
}

.fc-test-card--big .fc-test-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 28px;
}

.fc-test-attr {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--light-line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.fc-test-card--big .fc-test-attr {
  border-color: rgba(255, 255, 255, 0.1);
}

.fc-test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.fc-test-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.fc-test-card--big .fc-test-name {
  color: #fff;
}

.fc-test-meta {
  font-size: 11px;
  color: var(--light-ink-3);
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-weight: 500;
}

.fc-test-card--big .fc-test-meta {
  color: rgba(255, 255, 255, 0.5);
}

.fc-test-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 12px;
}

.fc-google-bar {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: 100px;
  background: var(--light-bg-2);
  border: 1px solid var(--light-line);
  box-shadow: 0 4px 12px rgba(14, 47, 107, 0.05);
}

.fc-google-bar svg {
  width: 22px;
  height: 22px;
}

.fc-google-bar b {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

.fc-google-bar span {
  font-size: 12px;
  color: var(--light-ink-3);
}

/* HOSPITALS */
.fc-hospitals {
  padding: 60px 0;
  background: var(--light-bg-2);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.fc-hospitals-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cyan-deep);
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 700;
}

.fc-marquee {
  overflow: hidden;
}

.fc-marquee-track {
  display: flex;
  gap: 70px;
  align-items: center;
  animation: fc-scroll 40s linear infinite;
  width: max-content;
}

@keyframes fc-scroll {
  0% {
    transform: translateX(0);
  }

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

.fc-hospital-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.fc-hospital-logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--light-ink-3);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}

/* FAQ */
.fc-faq {
  padding: 100px 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fc-faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.fc-faq-list {
  border-top: 1px solid var(--light-line);
}

.fc-faq-item {
  border-bottom: 1px solid var(--light-line);
  padding: 22px 0;
  cursor: pointer;
  transition: 200ms;
}

.fc-faq-q {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--navy);
  line-height: 1.3;
}

.fc-faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--light-line);
  display: grid;
  place-items: center;
  color: var(--cyan-deep);
  flex-shrink: 0;
  transition: 250ms;
}

.fc-faq-item.open .fc-faq-toggle {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
  transform: rotate(45deg);
}

.fc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, margin 350ms ease;
  font-size: 14px;
  line-height: 1.65;
  color: var(--light-ink-2);
  max-width: 720px;
}

.fc-faq-item.open .fc-faq-a {
  max-height: 240px;
  margin-top: 14px;
}

/* BLOG */
.fc-blog {
  background: var(--light-bg-2);
  padding: 100px 80px;
  position: relative;
  z-index: 1;
}

.fc-blog-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.fc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.fc-post {
  border-radius: 24px;
  overflow: hidden;
  background: var(--light-bg);
  border: 1px solid var(--light-line);
  transition: 350ms;
  cursor: pointer;
}

.fc-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(14, 47, 107, 0.12);
  border-color: var(--cyan);
}

.fc-post-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: grid;
  place-items: center;
}

.fc-post-img-shape {
  width: 70%;
  height: 70%;
  opacity: 0.7;
}

.fc-post-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.fc-post-body {
  padding: 26px;
}

.fc-post-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--light-ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.fc-post-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}

.fc-post-cta {
  font-size: 13px;
  color: var(--cyan-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* FINAL CTA */
.fc-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ink);
  padding: 120px 80px;
}

.fc-final::before {
  content: '';
  position: absolute;
  top: -300px;
  left: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 195, 199, 0.3), transparent 70%);
  filter: blur(80px);
}

.fc-final::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.18), transparent 70%);
  filter: blur(80px);
}

.fc-final-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.fc-final-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  color: #fff;
}

.fc-final-h i {
  color: var(--cyan-2);
}

.fc-final-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 30px;
  color: var(--cyan-2);
  margin-top: 14px;
  line-height: 1.2;
}

.fc-final-lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 24px 0 32px;
  max-width: 540px;
}

.fc-final-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.fc-final-cta {
  padding: 18px 30px;
  border-radius: 100px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  border: none;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(31, 195, 199, 0.4);
  transition: 250ms;
}

.fc-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(31, 195, 199, 0.55);
}

.fc-final-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--cyan-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fc-qr-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(31, 195, 199, 0.25);
  border-radius: 28px;
  padding: 32px;
  text-align: center;
}

.fc-qr-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.fc-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 18px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  display: grid;
  place-items: center;
}

.fc-qr-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.fc-qr-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* FOOTER */
.fc-footer {
  /* Lock footer theme to homepage so inner pages can't override it via :root tokens */
  --navy: #0E2F6B;
  --navy-deep: #07173d;
  --navy-2: #1a3d8a;
  --cyan: #1FC3C7;
  --cyan-2: #5BD9DC;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 80px 28px;
  border-top: 1px solid rgba(31, 195, 199, 0.15);
}

.fc-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-footer-brand .fc-brand-name .fc-flow {
  color: #fff;
}

.fc-footer-tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 18px 0 22px;
  max-width: 280px;
}

.fc-footer-contact {
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.fc-footer-contact div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.fc-footer-contact svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  margin-top: 3px;
  flex-shrink: 0;
}

.fc-footer-h {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.fc-footer-list {
  display: grid;
  gap: 9px;
}

.fc-footer-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 200ms;
  cursor: pointer;
}

.fc-footer-list a:hover {
  color: var(--cyan);
}

.fc-footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.fc-footer-compliance {
  display: flex;
  gap: 14px;
  justify-self: center;
}

.fc-footer-compliance span {
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(31, 195, 199, 0.08);
  border: 1px solid rgba(31, 195, 199, 0.15);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.fc-footer-socials {
  display: flex;
  gap: 10px;
}

.fc-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31, 195, 199, 0.08);
  border: 1px solid rgba(31, 195, 199, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: 250ms;
  cursor: pointer;
}

.fc-footer-socials a:hover {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.fc-footer-socials svg {
  width: 14px;
  height: 14px;
}

/* FLOATING ELEMENTS */
.fc-floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: 250ms;
  animation: fc-bounce 3s ease-in-out infinite;
}

.fc-floating-wa::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: fc-ring 2s ease-out infinite;
}

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

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

@keyframes fc-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.fc-floating-wa:hover {
  transform: scale(1.08);
}

.fc-floating-wa svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.fc-floating-call {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 80;
  padding: 14px 22px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(14, 47, 107, 0.3);
}

.fc-floating-call svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

/* COOKIE BANNER */
.fc-cookie {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  max-width: 720px;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--light-line);
  box-shadow: 0 24px 60px rgba(14, 47, 107, 0.2);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.fc-cookie-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--light-ink-2);
}

.fc-cookie-text b {
  color: var(--navy);
  font-weight: 700;
}

.fc-cookie-btn {
  padding: 9px 16px;
  border-radius: 100px;
  font: inherit;
  font-size: 12px;
  border: 1px solid var(--light-line);
  background: none;
  cursor: pointer;
  color: var(--light-ink-2);
  font-weight: 600;
}

.fc-cookie-btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.fc-cookie-btn--primary:hover {
  background: var(--cyan-deep);
  border-color: var(--cyan-deep);
}
