/* ==========================================================================
   Colombia Care — Service Page Styles
   Companion to styles.css · Used by all individual treatment pages
   ========================================================================== */

/* ==========================================================================
   0a. Skip Link (Accessibility)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ==========================================================================
   0b. Stat Counter Bar
   ========================================================================== */
.stats-bar {
  background: linear-gradient(135deg, rgba(0, 140, 59, 0.12) 0%, rgba(31, 59, 118, 0.18) 100%);
  border-bottom: 1px solid rgba(0, 140, 59, 0.15);
  padding: 36px 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ==========================================================================
   0c. Trust Badge Strip
   ========================================================================== */
.trust-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--white-10);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white-55);
  font-weight: 600;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logos img {
  height: 64px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(20%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.06);
}

/* ==========================================================================
   0d. Scroll Reveal Animations
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .stat-number {
    transition: none;
  }
  /* Protocol steps — show immediately */
  .protocol-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .protocol-num {
    transform: none;
    transition: none;
  }
  .protocol-rows::before {
    transform: scaleY(1);
    transition: none;
  }
}

/* ==========================================================================
   0e. Focus & Interaction Polish
   ========================================================================== */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

/* ==========================================================================
   1. Service Hero
   ========================================================================== */
.svc-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 60px;
  overflow: hidden;
}

/* Ken Burns slow zoom on background */
.svc-hero-bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.65;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Gradient overlay with subtle animated accent line */
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 15, 25, 0.2) 0%,
    rgba(13, 26, 48, 0.45) 40%,
    rgba(13, 26, 48, 0.88) 100%);
  z-index: 1;
}
.svc-hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--green) 30%,
    var(--gold, #c9a84c) 50%,
    var(--green) 70%,
    transparent 100%);
  opacity: 0.6;
  animation: heroLine 3s ease-out 1s both;
}
@keyframes heroLine {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 0.6; }
}

/* Staggered text entrance */
.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.svc-hero-inner .breadcrumb {
  animation: heroFadeUp 0.7s ease-out 0.2s both;
}
.svc-hero-inner .display {
  margin-bottom: 18px;
  animation: heroFadeUp 0.7s ease-out 0.4s both;
}
.svc-hero-inner .section-sub {
  animation: heroFadeUp 0.7s ease-out 0.6s both;
}
.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  animation: heroFadeUp 0.7s ease-out 0.8s both;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion: disable all hero animations */
@media (prefers-reduced-motion: reduce) {
  .svc-hero-bg {
    animation: none;
    inset: 0;
  }
  .svc-hero-overlay::after {
    animation: none;
    transform: scaleX(1);
  }
  .svc-hero-inner .breadcrumb,
  .svc-hero-inner .display,
  .svc-hero-inner .section-sub,
  .svc-hero-actions {
    animation: none;
    opacity: 1;
  }
}

/* ==========================================================================
   1b. Hero V2 — Dramatic Parallax + Glass + Shimmer
   ========================================================================== */

/* V2 hero — tighter height so CTA stays visible */
.hero-v2 {
  min-height: 55vh;
  padding: 90px 0 48px;
}

/* Slower, wider drift on background — focal point right */
.hero-v2 .svc-hero-bg {
  inset: -8%;
  background-position: 70% center;
  animation: heroV2Drift 25s ease-in-out infinite alternate;
  opacity: 0.55;
}
@keyframes heroV2Drift {
  0%   { transform: scale(1.12) translate(0, 0); }
  33%  { transform: scale(1.08) translate(-1.5%, 1%); }
  66%  { transform: scale(1.10) translate(1%, -0.5%); }
  100% { transform: scale(1.06) translate(-0.5%, 0.5%); }
}

/* Richer overlay — heavier on left, lighter on right to reveal image */
.hero-v2 .svc-hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(10, 20, 40, 0.88) 0%,
      rgba(13, 26, 48, 0.65) 45%,
      rgba(13, 26, 48, 0.30) 75%,
      rgba(13, 26, 48, 0.20) 100%),
    linear-gradient(180deg,
      rgba(5, 10, 20, 0.10) 0%,
      rgba(10, 20, 40, 0.50) 100%);
}

/* Animated glow orb behind glass panel */
.hero-v2-glow {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 140, 59, 0.18) 0%,
    rgba(0, 140, 59, 0.06) 40%,
    transparent 70%
  );
  z-index: 1;
  filter: blur(60px);
  animation: heroGlowPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlowPulse {
  0%   { transform: scale(1) translate(0, 0); opacity: 0.6; }
  50%  { transform: scale(1.2) translate(5%, -3%); opacity: 1; }
  100% { transform: scale(0.9) translate(-3%, 2%); opacity: 0.7; }
}

/* Bottom accent line — wider, more vibrant sweep */
.hero-v2 .svc-hero-overlay::after {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 140, 59, 0.3) 15%,
    var(--green) 35%,
    var(--gold, #c9a84c) 50%,
    var(--green) 65%,
    rgba(0, 140, 59, 0.3) 85%,
    transparent 100%);
  opacity: 0.8;
  animation: heroLine 2.5s ease-out 0.8s both;
}

/* Frosted glass panel — offset left with breathing room */
.hero-v2 .svc-hero-inner {
  background: rgba(13, 26, 48, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 40px 36px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: 560px;
  margin-left: 6%;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

/* Glowing border animation on glass panel */
.hero-v2 .svc-hero-inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(0, 140, 59, 0.4) 0%,
    transparent 30%,
    transparent 60%,
    rgba(201, 168, 76, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: heroGlowBorder 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlowBorder {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Tighter heading + lede inside glass panel */
.hero-v2 .svc-hero-inner .lede {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Shimmer gradient on display heading */
.hero-v2 .svc-hero-inner .display {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 18px;
  padding-bottom: 4px;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--white) 40%,
    var(--green) 50%,
    var(--white) 60%,
    var(--white) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    heroFadeUp 0.7s ease-out 0.4s both,
    heroShimmer 4s ease-in-out 1.5s infinite;
}
@keyframes heroShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Accent span keeps solid color inside shimmer */
.hero-v2 .svc-hero-inner .display .accent {
  -webkit-text-fill-color: var(--green);
}

/* Entrance animations — slightly more dramatic timing */
.hero-v2 .svc-hero-inner .breadcrumb {
  animation: heroV2SlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-v2 .svc-hero-inner .kicker {
  animation: heroV2SlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
.hero-v2 .svc-hero-inner .lede {
  animation: heroV2SlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}
.hero-v2 .svc-hero-actions {
  animation: heroV2SlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}
@keyframes heroV2SlideIn {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Reduced motion: disable all v2 hero animations */
@media (prefers-reduced-motion: reduce) {
  .hero-v2 .svc-hero-bg {
    animation: none;
    inset: 0;
  }
  .hero-v2-glow {
    animation: none;
    opacity: 0.6;
  }
  .hero-v2 .svc-hero-inner::before {
    animation: none;
    opacity: 0.7;
  }
  .hero-v2 .svc-hero-inner .display {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--white);
    opacity: 1;
  }
  .hero-v2 .svc-hero-inner .display .accent {
    -webkit-text-fill-color: var(--green);
  }
  .hero-v2 .svc-hero-inner .breadcrumb,
  .hero-v2 .svc-hero-inner .kicker,
  .hero-v2 .svc-hero-inner .lede,
  .hero-v2 .svc-hero-actions {
    animation: none;
    opacity: 1;
  }
}

/* V2 responsive — full width on mobile */
@media (max-width: 900px) {
  .hero-v2 .svc-hero-inner {
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-v2 .svc-hero-bg {
    background-position: center center;
  }
  .hero-v2 .svc-hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(5, 10, 20, 0.15) 0%,
        rgba(13, 26, 48, 0.55) 35%,
        rgba(10, 20, 40, 0.92) 100%);
  }
}
@media (max-width: 600px) {
  .hero-v2 .svc-hero-inner {
    padding: 28px 20px 24px;
    border-radius: 12px;
  }
  .hero-v2-glow {
    width: 280px;
    height: 280px;
    bottom: 5%;
    left: 5%;
  }
}

/* ==========================================================================
   2. Breadcrumb
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--white-55);
  transition: color .2s ease;
}
.breadcrumb a:hover {
  color: var(--green);
}
.breadcrumb span {
  color: var(--white-40);
}
.breadcrumb [aria-current] {
  color: var(--white-90);
  font-weight: 600;
}

/* ==========================================================================
   3. Why Choose Us — Benefit Cards
   ========================================================================== */
.svc-why {
  background: rgba(0, 0, 0, 0.12);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: left;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
  background: var(--card-hover);
}
.benefit-icon {
  display: none;
}
.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}

/* Dark variant for benefit cards on parallax / image backgrounds */
.benefit-grid-dark {
  gap: 28px;
}
.benefit-card-dark {
  background: rgba(13, 26, 48, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(0, 140, 59, 0.15);
}
.benefit-card-dark:hover {
  background: rgba(13, 26, 48, 0.85);
  border-color: rgba(0, 140, 59, 0.3);
}

/* ==========================================================================
   4. Conditions Treated — Compact List
   ========================================================================== */
.svc-conditions {
  /* default section bg */
}
/* Legacy card grid — kept for other service pages until propagated */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.condition-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s ease, border-color .3s ease;
}
.condition-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}
.condition-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--white);
}
.condition-card h3::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 14px;
}
.condition-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}

/* NEW: Compact two-column list layout */
.condition-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.condition-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--white-10);
  position: relative;
}
.condition-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.condition-item h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.condition-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--green);
}
.condition-item p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}

/* ==========================================================================
   5. How It Works — Process Steps
   ========================================================================== */
.svc-process {
  background: rgba(0, 0, 0, 0.18);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: process;
}
.process-step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}
.step-num {
  display: inline-block;
  font-size: 38px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.process-step h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}

/* Connector line between steps (desktop only) */
@media (min-width: 901px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -13px;
    width: 24px;
    height: 2px;
    background: var(--white-10);
    z-index: 1;
  }
}

/* NEW: Process v2 — Vertical Timeline */
.svc-process-v2 {
  background: transparent;
}
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 60px;
}
/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, var(--white-10) 100%);
}
.timeline-entry {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding-bottom: 40px;
}
.timeline-entry:last-child {
  padding-bottom: 0;
}
.timeline-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-marker span {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}
.timeline-content {
  padding-top: 4px;
}
.timeline-content h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--white);
}
.timeline-content p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   5b. Clinic Photo Banner — Visual Break
   ========================================================================== */
.svc-banner {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.svc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.svc-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 26, 48, 0.75) 0%,
    rgba(13, 26, 48, 0.35) 50%,
    rgba(13, 26, 48, 0.15) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 6vw, 80px);
}
.svc-banner-text {
  color: var(--white);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 460px;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

/* Variant: show full image (no crop) */
.svc-banner-full {
  height: auto;
}
.svc-banner-full img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   6. Am I a Candidate — Two-Column
   ========================================================================== */
.svc-candidate {
  background: rgba(0, 0, 0, 0.08);
}
.candidate-copy .kicker {
  margin-bottom: 16px;
}
.candidate-copy h2 {
  margin-bottom: 16px;
}
.candidate-copy > p {
  color: var(--white-70);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--white-90);
  font-size: 15px;
  line-height: 1.6;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 140, 59, 0.15);
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
}
/* ==========================================================================
   6b. Cells in Action — Results Showcase
   ========================================================================== */
.cells-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.cells-action-card {
  background: linear-gradient(135deg, rgba(0, 140, 59, 0.08) 0%, rgba(31, 59, 118, 0.12) 100%);
  border: 1px solid rgba(0, 140, 59, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cells-action-card:hover {
  border-color: rgba(0, 140, 59, 0.4);
  transform: translateY(-3px);
}
.cells-action-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 140, 59, 0.12);
}
.cells-action-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--white);
}
.cells-action-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 600px) {
  .cells-action-grid {
    grid-template-columns: 1fr;
  }
  .cells-action-card {
    padding: 24px 20px;
  }
}

.candidate-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.candidate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ==========================================================================
   7. What to Expect — Timeline Cards
   ========================================================================== */
.svc-results {
  background: rgba(0, 0, 0, 0.15);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.timeline-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}
.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.timeline-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.timeline-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.timeline-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   8. Related Services — Link Cards
   ========================================================================== */
.svc-related {
  /* default section bg */
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.related-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease;
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
  color: inherit;
}
.related-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.related-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,25,0) 50%, rgba(10,15,25,0.6) 100%);
}
.related-card h3 {
  padding: 18px 20px 20px;
  font-size: 17px;
  margin: 0;
  color: var(--white);
}

/* ==========================================================================
   8b. Protocol Grid — Full Treatment Package (legacy for other pages)
   ========================================================================== */
.svc-protocol {
  background: rgba(0, 0, 0, 0.1);
}
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.protocol-grid .protocol-card:nth-child(4) {
  grid-column: 1 / 2;
}
.protocol-grid .protocol-card:nth-child(5) {
  grid-column: 2 / 3;
}
.protocol-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.protocol-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}
.protocol-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.protocol-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}
.protocol-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.protocol-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}

/* NEW: Protocol v2 — Stacked rows with green accent strip */
.svc-protocol-v2 {
  background: linear-gradient(135deg, rgba(0, 140, 59, 0.08) 0%, rgba(31, 59, 118, 0.15) 100%);
  border-top: 1px solid rgba(0, 140, 59, 0.2);
  border-bottom: 1px solid rgba(0, 140, 59, 0.2);
}
.protocol-rows {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connecting line between step numbers */
.protocol-rows::before {
  content: '';
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 23px; /* center of 48px num circle */
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, rgba(0, 140, 59, 0.2) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.protocol-rows.steps-visible::before {
  transform: scaleY(1);
}

.protocol-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--white-10);
  /* Stagger entrance */
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.protocol-row:nth-child(1) { transition-delay: 0.1s; }
.protocol-row:nth-child(2) { transition-delay: 0.25s; }
.protocol-row:nth-child(3) { transition-delay: 0.4s; }
.protocol-row:nth-child(4) { transition-delay: 0.55s; }
.protocol-row:nth-child(5) { transition-delay: 0.7s; }

.protocol-rows.steps-visible .protocol-row {
  opacity: 1;
  transform: translateX(0);
}

.protocol-row:last-child {
  border-bottom: none;
}
.protocol-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--green);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  background: var(--navy);
  /* Pop-in effect */
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.protocol-row:nth-child(1) .protocol-num { transition-delay: 0.1s; }
.protocol-row:nth-child(2) .protocol-num { transition-delay: 0.25s; }
.protocol-row:nth-child(3) .protocol-num { transition-delay: 0.4s; }
.protocol-row:nth-child(4) .protocol-num { transition-delay: 0.55s; }
.protocol-row:nth-child(5) .protocol-num { transition-delay: 0.7s; }

.protocol-rows.steps-visible .protocol-num {
  transform: scale(1);
}

.protocol-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--white);
}
.protocol-body p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}
.evidence-links {
  margin-top: 10px;
}
.evidence-links a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.8;
  transition: opacity 0.2s;
}
.evidence-links a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   9. Expert Spotlight
   ========================================================================== */
.svc-expert {
  background: rgba(0, 0, 0, 0.12);
}
.expert-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.expert-copy h2 {
  margin-bottom: 16px;
}
.expert-copy > p {
  color: var(--white-70);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
}
.expert-credentials {
  list-style: none;
  padding: 0;
  margin: 24px 0 20px;
  display: grid;
  gap: 12px;
}
.expert-credentials li {
  position: relative;
  padding-left: 28px;
  color: var(--white-90);
  font-size: 15px;
  line-height: 1.5;
}
.expert-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ==========================================================================
   10. Service Page Testimonial
   ========================================================================== */
.svc-testimonial {
  background: rgba(0, 0, 0, 0.08);
}
.svc-testi-card {
  display: flex;
  gap: 36px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.svc-testi-card img {
  width: 260px;
  min-height: 280px;
  object-fit: cover;
  flex-shrink: 0;
}
.svc-testi-body {
  padding: 36px 36px 36px 0;
}
.svc-testi-body blockquote {
  margin: 0;
  color: var(--white-90);
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 22px;
  border-left: 3px solid var(--green);
}
.svc-testi-body figcaption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-testi-body figcaption strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.svc-testi-body figcaption span {
  color: var(--white-55);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Video testimonial variant */
.svc-testi-video {
  flex-direction: column;
  max-width: 740px;
  gap: 0;
}
.svc-testi-media {
  width: 100%;
  position: relative;
  background: #000;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.svc-testi-media video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.svc-testi-video .svc-testi-body {
  padding: 32px 36px;
}

/* ==========================================================================
   11. Service Page Blog Grid
   ========================================================================== */
.svc-blog {
  background: rgba(0, 0, 0, 0.18);
}
.svc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ==========================================================================
   12. Responsive — Service Pages
   ========================================================================== */
@media (max-width: 900px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-logos img {
    height: 40px;
  }
  .svc-hero {
    min-height: 50vh;
    padding: 80px 0 50px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .condition-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .protocol-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .protocol-grid .protocol-card:nth-child(4),
  .protocol-grid .protocol-card:nth-child(5) {
    grid-column: auto;
  }
  /* Banner — reduce height on tablet */
  .svc-banner {
    height: 260px;
  }
  .svc-banner-full {
    height: auto;
  }
  /* New condition list — stack on tablet */
  .condition-list {
    grid-template-columns: 1fr;
  }
  .condition-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--white-10);
  }
  .condition-item:last-child {
    border-bottom: none;
  }
  /* Protocol rows — already single column, just tighten */
  .protocol-rows {
    max-width: 100%;
  }
  /* Timeline — already vertical, tighten spacing */
  .timeline {
    max-width: 100%;
  }
  .svc-testi-card {
    flex-direction: column;
  }
  .svc-testi-card img {
    width: 100%;
    min-height: 220px;
    max-height: 280px;
  }
  .svc-testi-body {
    padding: 28px;
  }
  .svc-blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .stats-bar {
    padding: 28px 0;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 26px;
  }
  .stat-label {
    font-size: 11px;
  }
  .trust-strip-inner {
    flex-direction: column;
    gap: 16px;
  }
  .trust-logos {
    gap: 20px;
  }
  .trust-logos img {
    height: 34px;
  }
  .svc-hero {
    min-height: auto;
    padding: 70px 0 40px;
  }
  .svc-hero-inner .display {
    font-size: clamp(30px, 7vw, 42px);
  }
  .svc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .svc-hero-actions .btn {
    width: 100%;
  }
  .breadcrumb {
    font-size: 11px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    text-align: left;
    padding: 28px 24px;
  }
  .benefit-icon {
    margin-bottom: 12px;
  }
  .condition-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .related-card h3 {
    padding: 14px 16px 16px;
    font-size: 15px;
  }
  .candidate-media {
    order: -1;
  }
  .expert-photo {
    order: -1;
  }
  .protocol-grid {
    grid-template-columns: 1fr;
  }
  /* Banner mobile */
  .svc-banner {
    height: 220px;
  }
  .svc-banner-full {
    height: auto;
  }
  /* Condition list mobile */
  .condition-list {
    grid-template-columns: 1fr;
  }
  .condition-item {
    padding: 18px 0;
  }
  /* Protocol rows mobile */
  .protocol-row {
    gap: 16px;
    padding: 20px 0;
  }
  .protocol-num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .protocol-rows::before {
    left: 19px; /* center of 40px circle */
    top: 44px;
    bottom: 44px;
  }
  /* Timeline mobile */
  .timeline {
    padding-left: 48px;
  }
  .timeline::before {
    left: 17px;
  }
  .timeline-marker {
    left: -48px;
    width: 36px;
    height: 36px;
  }
  .timeline-marker span {
    font-size: 13px;
  }
  .timeline-entry {
    padding-bottom: 30px;
  }
  .svc-testi-card img {
    max-height: 240px;
  }
  .svc-testi-body blockquote {
    font-size: 15px;
  }
  .svc-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. Bold Page Effects — About / Team / Blog
   ========================================================================== */

/* --- 13a. Parallax scroll sections ---------------------------------------- */
.parallax-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.parallax-section > .container {
  position: relative;
  z-index: 2;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,48,0.92) 0%, rgba(13,26,48,0.80) 50%, rgba(13,26,48,0.92) 100%);
  z-index: 1;
}

/* --- 13b. Gradient text highlights ---------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e8d5a0 50%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- 13c. Hover-tilt doctor/team cards ----------------------------------- */
.tilt-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.tilt-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 140, 59, 0.15), 0 8px 24px rgba(0,0,0,0.3);
  border-color: var(--card-border-hover);
}
.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,140,59,0.08), transparent 40%);
  pointer-events: none;
  z-index: 3;
}
.tilt-card:hover::after {
  opacity: 1;
}

/* Tilt card inner structure */
.tilt-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.tilt-card:hover .tilt-card-img {
  transform: scale(1.05);
}
.tilt-card-body {
  padding: 28px 24px 32px;
  position: relative;
  z-index: 2;
}
.tilt-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}
.tilt-card-body .tilt-card-role {
  font-size: 13px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 12px;
  display: block;
}
.tilt-card-body p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
  margin: 0 0 16px;
}
.tilt-card-body .link-arrow {
  font-size: 13px;
}

/* Team grid — 4 columns */
.team-tilt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Team page hero-card variant — full-bleed image with overlay text
   Uses --overlay modifier to avoid affecting about-us standard tilt cards */
.team-tilt-grid--overlay .tilt-card {
  height: 360px;
}
.team-tilt-grid--overlay .tilt-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: auto;
}
.team-tilt-grid--overlay .tilt-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0.95) 100%);
  padding: 2rem 1.5rem 1.5rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team-tilt-grid--overlay .tilt-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

/* --- 13d. Floating orb accents ------------------------------------------- */
.floating-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.floating-orb-green {
  background: var(--green);
  width: 400px;
  height: 400px;
  top: 10%;
  left: -5%;
}
.floating-orb-gold {
  background: var(--gold);
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: -5%;
  animation-delay: -10s;
  animation-duration: 25s;
}
.floating-orb-navy {
  background: var(--navy);
  width: 350px;
  height: 350px;
  top: 50%;
  left: 40%;
  animation-delay: -5s;
  animation-duration: 18s;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -40px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(15px, -15px) scale(1.05); }
}

/* --- 13e. Staggered entrance animations ---------------------------------- */
.stagger-grid [data-reveal],
.stagger-grid > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stagger-grid.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-grid.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-grid.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-grid.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-grid.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-grid.revealed > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-grid.revealed > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-grid.revealed > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-grid.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- 13f. Dramatic timeline (About page story) --------------------------- */
.story-timeline {
  position: relative;
  padding-left: 60px;
  max-width: 800px;
}
.story-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--gold), var(--green));
  opacity: 0.4;
}
.story-milestone {
  position: relative;
  padding: 0 0 48px;
}
.story-milestone:last-child {
  padding-bottom: 0;
}
.story-milestone::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--navy-dark);
  box-shadow: 0 0 20px rgba(0, 140, 59, 0.4);
  z-index: 2;
}
.story-milestone .story-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-light);
  margin-bottom: 8px;
}
.story-milestone h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}
.story-milestone p {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* --- 13g. Animated underline for headings -------------------------------- */
.animated-underline {
  position: relative;
  display: inline;
}
.animated-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.revealed .animated-underline::after,
.animated-underline.active::after {
  width: 100%;
}

/* --- 13h. Full-bleed split section (About) ------------------------------- */
.split-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-bleed-media {
  position: relative;
  overflow: hidden;
}
.split-bleed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.split-bleed:hover .split-bleed-media img {
  transform: scale(1.05);
}
.split-bleed-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--navy-dark);
  position: relative;
}

/* --- 13i. Blog page grid ------------------------------------------------- */
.blog-hero-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.blog-featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}
.blog-featured-card .blog-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.blog-featured-card:hover .blog-featured-bg {
  transform: scale(1.04);
}
.blog-featured-card .blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,26,48,0.95) 0%, rgba(13,26,48,0.3) 60%, transparent 100%);
  z-index: 1;
}
.blog-featured-card .blog-featured-body {
  position: relative;
  z-index: 2;
  padding: 36px;
}
.blog-featured-card .blog-category {
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
}
.blog-featured-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 10px;
}
.blog-featured-card p {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 14px;
}

/* Blog listing grid */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-listing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.blog-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: var(--card-border-hover);
}
.blog-listing-card .blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-listing-card:hover .blog-card-img {
  transform: scale(1.05);
}
.blog-listing-card .blog-card-content {
  padding: 24px;
}
.blog-listing-card .blog-card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0 0 8px;
}
.blog-listing-card .blog-card-content p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
  margin: 0 0 14px;
}
.blog-listing-card .blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.blog-listing-card .blog-card-meta .blog-tag {
  background: rgba(0,140,59,0.15);
  color: var(--green-light);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
}

/* --- 13j. Concierge step cards ------------------------------------------- */
.concierge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.concierge-card {
  background: linear-gradient(135deg, rgba(0,140,59,0.06), rgba(31,59,118,0.1));
  border: 1px solid rgba(0,140,59,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.concierge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,140,59,0.3);
}
.concierge-card::before {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(0,140,59,0.06);
  line-height: 1;
  pointer-events: none;
}
.concierge-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}
.concierge-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.65;
  margin: 0;
}

/* --- 13k. Doctor profile — expanded bio (Team page) ---------------------- */
.doc-profile {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.doc-profile:nth-child(even) {
  background: rgba(0,0,0,0.12);
}
.doc-profile .grid-2 {
  align-items: center;
}
.doc-profile-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.doc-profile-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.doc-profile:hover .doc-profile-photo img {
  transform: scale(1.03);
}
.doc-profile-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(0,140,59,0.3), rgba(201,168,76,0.3)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.doc-profile:hover .doc-profile-photo::after {
  opacity: 1;
}
.doc-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.doc-specialty-tag {
  display: inline-block;
  background: rgba(0,140,59,0.12);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,140,59,0.2);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.doc-specialty-tag:hover {
  background: rgba(0,140,59,0.25);
  border-color: rgba(0,140,59,0.4);
}

/* --- 13l. Grid reverse (for alternating layouts) ------------------------- */
.grid-2-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  direction: rtl;
}
.grid-2-reverse > * {
  direction: ltr;
}

/* --- 13m. Team overview intro -------------------------------------------- */
.team-overview {
  margin: 60px 0;
  text-align: center;
}
/* --- 13m-ii. Expert subheading ------------------------------------------- */
.h-subhead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-light);
  margin: 0.5rem 0 1.5rem;
}

.team-overview-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 500;
}

/* --- 13n. Banner break (full-width image divider) ------------------------ */
.banner-break {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}
.banner-break-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.banner-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,41,79,0.75) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.banner-break-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.banner-break .h-xxl {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
}
.banner-break .gold-accent {
  color: var(--gold);
}

/* ==========================================================================
   14. Bold Effects — Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .team-tilt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .split-bleed {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-bleed-content {
    padding: 48px 32px;
  }
  .split-bleed-media {
    max-height: 350px;
  }
  .blog-hero-featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-featured-card {
    min-height: 300px;
  }
  .blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .concierge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .story-timeline {
    padding-left: 48px;
  }
  .story-milestone::before {
    left: -30px;
  }
  .story-timeline::before {
    left: 12px;
  }
  .grid-2-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .doc-profile {
    padding: 50px 0;
  }
}

@media (max-width: 600px) {
  .team-tilt-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .tilt-card-body {
    padding: 20px 16px 24px;
  }
  .tilt-card-body h3 {
    font-size: 16px;
  }
  .tilt-card-body p {
    display: none;
  }
  .blog-listing-grid {
    grid-template-columns: 1fr;
  }
  .blog-featured-card {
    min-height: 260px;
  }
  .blog-featured-card h3 {
    font-size: 20px;
  }
  .concierge-grid {
    grid-template-columns: 1fr;
  }
  .story-timeline {
    padding-left: 40px;
  }
  .story-milestone::before {
    left: -24px;
    width: 12px;
    height: 12px;
  }
  .story-timeline::before {
    left: 10px;
  }
  .story-milestone h3 {
    font-size: 18px;
  }
  .doc-profile {
    padding: 40px 0;
  }
  .doc-specialties {
    gap: 6px;
  }
  .doc-specialty-tag {
    font-size: 11px;
    padding: 4px 10px;
  }
  .floating-orb {
    display: none;
  }
}

/* --- Reduced motion -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .tilt-card,
  .tilt-card:hover,
  .blog-listing-card,
  .blog-listing-card:hover,
  .concierge-card,
  .concierge-card:hover {
    transition: none;
    transform: none;
  }
  .floating-orb {
    animation: none;
  }
  .stagger-grid > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .animated-underline::after {
    width: 100%;
    transition: none;
  }
}
