/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-bg: #F8F8F3;
  --color-dark: #163D2A;
  --color-secondary: #347A4B;
  --color-sage: #DCEBD5;
  --color-sage-light: #EEF5EA;
  --color-text: #172019;
  --color-text-secondary: #526158;
  --color-border: #D9E3D5;
  --color-urgency: #D83A3A;
  --color-white: #FFFFFF;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET / BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--color-secondary); outline-offset: 3px; }

/* ============================================
   SHARED UTILITIES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16.5px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-dark);
  color: var(--color-white);
  height: 54px;
  padding: 0 30px;
  box-shadow: 0 6px 16px rgba(22, 61, 42, 0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 61, 42, 0.24);
  background: #12331f;
}

.btn--primary:active { transform: translateY(0); }

.btn__arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s var(--ease-out);
}

.btn--primary:hover .btn__arrow { transform: translateX(4px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: var(--color-bg);
  padding: 32px 20px 40px;
  overflow: hidden;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.hero__orb--a {
  width: 380px;
  height: 380px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, var(--color-sage) 0%, rgba(220, 235, 213, 0) 70%);
}

.hero__orb--b {
  width: 280px;
  height: 280px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, var(--color-sage-light) 0%, rgba(238, 245, 234, 0) 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ---------- Centered top badge ---------- */
.hero__badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.trust-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}

/* ---------- Main row ---------- */
.hero__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__row {
    grid-template-columns: 540px 1fr;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
  }
}

/* ---------- Media column ---------- */
.hero__media {
  position: relative;
  transition: transform 0.25s var(--ease-out);
}

/* Subtle offset depth layer behind the video card */
.hero__media::before {
  content: '';
  position: absolute;
  inset: 10px -8px -8px 10px;
  background: var(--color-sage);
  opacity: 0.55;
  border-radius: 18px;
  z-index: -1;
}

.hero__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(22, 61, 42, 0.16), 0 4px 10px rgba(22, 61, 42, 0.08);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.hero__media:hover .hero__video-frame {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(22, 61, 42, 0.20), 0 6px 14px rgba(22, 61, 42, 0.10);
}

/* Small framing details at the video corners — subtle, not decoration for its own sake */
.hero__corner-accent {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.25s var(--ease-out);
}

.hero__corner-accent--tl {
  top: -9px;
  left: -9px;
  width: 30px;
  height: 30px;
  color: var(--color-secondary);
}

.hero__corner-accent--br {
  bottom: -9px;
  right: -9px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(22, 61, 42, 0.26);
}

.hero__media:hover .hero__corner-accent--tl { transform: translate(-2px, -2px); }
.hero__media:hover .hero__corner-accent--br { transform: translate(2px, 2px); }

@media (max-width: 640px) {
  .hero__corner-accent { display: none; }
  .hero__media::before { inset: 7px -5px -5px 7px; }
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(22, 61, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 11px;
  border-radius: 10px;
  color: var(--color-white);
  pointer-events: none;
}

.hero__video-name { font-size: 12px; font-weight: 600; letter-spacing: 0.01em; }
.hero__video-sub { font-size: 10.5px; font-weight: 400; opacity: 0.85; }

/* Styled fallback if the video source fails to load (never show a native broken-media icon) */
.hero__video-fallback {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(155deg, var(--color-dark) 0%, #1d4a32 100%);
  text-align: center;
  padding: 20px;
}

.video-error .hero__video { display: none; }
.video-error .hero__video-label { display: none; }
.video-error .hero__video-fallback { display: flex; }

.hero__video-fallback-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(248, 248, 243, 0.14);
  color: var(--color-white);
}

.hero__video-fallback-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
}

.hero__video-fallback-sub {
  font-size: 12px;
  color: rgba(248, 248, 243, 0.75);
}

.hero__floating-shape {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--color-sage) 0%, rgba(220, 235, 213, 0.3) 100%);
  bottom: -22px;
  right: -18px;
  z-index: -1;
  box-shadow: 0 14px 28px rgba(22, 61, 42, 0.10);
  animation: float 7s ease-in-out infinite;
}

@media (max-width: 899px) {
  .hero__floating-shape { width: 50px; height: 50px; bottom: -12px; right: -10px; }
}

@media (max-width: 399px) {
  .hero__floating-shape { display: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

/* ---------- Content column ---------- */
.hero__content { display: flex; flex-direction: column; }

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  line-height: 1.16;
  color: var(--color-text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .hero__headline { font-size: 44px; }
}

@media (min-width: 900px) {
  .hero__headline { font-size: 52px; }
}

.hero__highlight {
  background: var(--color-sage);
  color: var(--color-dark);
  padding: 0 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__description {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 46ch;
  margin: 0 0 18px;
}

/* Doctor credential card */
.hero__doctor-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: var(--color-sage-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  width: fit-content;
  max-width: 100%;
}

.hero__doctor-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}

.hero__doctor-creds { font-size: 12.5px; color: var(--color-text-secondary); }

/* CTA */
.hero__cta {
  width: fit-content;
  margin-bottom: 14px;
}

@media (max-width: 480px) {
  .hero__cta { width: 100%; }
}

/* Availability */
.hero__availability {
  display: flex;
  align-items: center;
  gap: 8px;
}

.availability__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-urgency);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.availability__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-urgency);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(216, 58, 58, 0.35); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(216, 58, 58, 0); }
}

/* ---------- Hero trust micro-points ---------- */
.hero__trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.hero__trust-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* ---------- Centered social proof ---------- */
.hero__proof {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.hero__proof-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 460px;
  min-height: 96px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-sage-light);
  padding: 18px;
  text-align: center;
}

.hero__proof-placeholder svg { color: var(--color-secondary); opacity: 0.7; }

.hero__proof-placeholder span {
  font-size: 12px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ============================================
   ENTRANCE ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal-up 0.6s var(--ease-out) forwards;
}

.hero__badge-row { animation-delay: 0.02s; }
.hero__media { animation-delay: 0.08s; }
.hero__eyebrow { animation-delay: 0.12s; }
.hero__headline { animation-delay: 0.18s; }
.hero__description { animation-delay: 0.24s; }
.hero__doctor-card { animation-delay: 0.3s; }
.hero__cta { animation-delay: 0.36s; }
.hero__availability { animation-delay: 0.42s; }
.hero__trust-points { animation-delay: 0.48s; }
.hero__proof { animation-delay: 0.54s; }

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { animation: none; opacity: 1; transform: none; }
  .hero__floating-shape { animation: none; }
  .availability__dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   SECTION 2: LIVED EXPERIENCE / PAIN RECOGNITION
   ============================================ */
.lived {
  position: relative;
  background: #F0F5EC;
  padding: 56px 20px 0;
  overflow: hidden;
}

.lived__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lived__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .lived__row {
    grid-template-columns: 54% 1fr;
    gap: 60px;
  }
}

/* ---------- Left column ---------- */
.lived__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.lived__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.22;
  color: var(--color-text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .lived__headline { font-size: 38px; }
}

@media (min-width: 900px) {
  .lived__headline { font-size: 44px; }
}

.lived__highlight {
  background: var(--color-sage);
  color: var(--color-dark);
  padding: 0 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.lived__highlight--sm {
  padding: 0 5px;
}

.lived__intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 46ch;
  margin: 0 0 28px;
}

/* Experience blocks */
.lived__blocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lived__block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.lived__block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(22, 61, 42, 0.08);
}

.lived__block-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.lived__block:hover .lived__block-num {
  background: var(--color-dark);
  color: var(--color-white);
}

.lived__block-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--color-text);
  margin: 0 0 4px;
}

.lived__block-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ---------- Right visual: route scene ---------- */
.lived__visual {
  display: flex;
  justify-content: center;
}

.route-scene {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 340 / 380;
}

.route-scene__surface {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(155deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
  box-shadow: 0 24px 50px rgba(22, 61, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.route-scene__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-scene__path {
  transition: stroke-dashoffset 1.4s var(--ease-out);
}

.route-scene.is-visible .route-scene__path {
  stroke-dashoffset: 0;
}

.route-scene__marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.route-scene__marker--home {
  top: 8%;
  left: 10%;
}

.route-scene__marker--outing {
  top: 44%;
  left: 34%;
}

.route-scene__marker--washroom {
  bottom: 12%;
  right: 12%;
}

.route-scene__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-secondary);
  box-shadow: 0 4px 10px rgba(22, 61, 42, 0.18);
}

.route-scene__dot--dest {
  border-color: var(--color-dark);
  background: var(--color-dark);
}

.route-scene__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.75);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.route-scene__float {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(220, 235, 213, 0.2) 70%);
  filter: blur(1px);
  animation: float-slow 7s ease-in-out infinite;
}

.route-scene__float--a {
  width: 46px;
  height: 46px;
  top: 6%;
  right: 10%;
  animation-delay: 0.3s;
}

.route-scene__float--b {
  width: 30px;
  height: 30px;
  bottom: 22%;
  left: 6%;
  animation-delay: 1.1s;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

@media (max-width: 899px) {
  .route-scene { max-width: 300px; }
}

/* ---------- Section transition ---------- */
.lived__transition {
  height: 56px;
  margin-top: 40px;
  background: linear-gradient(to bottom, #F0F5EC 0%, var(--color-bg) 100%);
}

/* ============================================
   SECTION 2 SCROLL-REVEAL ANIMATION
   ============================================ */
[data-reveal-scroll] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

[data-reveal-scroll].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lived__block:nth-child(1) { transition-delay: 0s; }
.lived__block:nth-child(2) { transition-delay: 0.12s; }
.lived__block:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal-scroll] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .route-scene__path {
    transition: none;
    stroke-dashoffset: 0;
  }

  .route-scene__float {
    animation: none;
  }

  .lived__block {
    transition: none;
  }
}

/* ============================================
   SECTION 3: WHY THIS APPROACH IS DIFFERENT
   ============================================ */
.approach {
  position: relative;
  background: #EEF5EA;
  padding: 64px 20px 0;
  overflow: hidden;
}

.approach__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.approach__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 900px) {
  .approach__row {
    grid-template-columns: 47% 1fr;
    gap: 64px;
  }
}

/* ---------- Left column ---------- */
.approach__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.approach__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .approach__headline { font-size: 42px; }
}

@media (min-width: 900px) {
  .approach__headline { font-size: 50px; }
}

.approach__highlight {
  background: var(--color-sage);
  color: var(--color-dark);
  padding: 0 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.approach__intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 46ch;
  margin: 0 0 30px;
}

/* Differentiator rows */
.approach__rows {
  display: flex;
  flex-direction: column;
}

.approach__row-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 4px;
  border-top: 1px solid var(--color-border);
  transition: transform 0.25s var(--ease-out), padding-left 0.25s var(--ease-out);
}

.approach__row-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.approach__row-item:hover {
  transform: translateX(2px);
}

.approach__row-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.approach__row-item:hover .approach__row-num {
  background: var(--color-dark);
  color: var(--color-white);
}

.approach__row-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--color-text);
  margin: 0 0 4px;
}

.approach__row-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 44ch;
}

/* ---------- Right visual: large 3D pathway ---------- */
.approach__visual {
  display: flex;
  justify-content: center;
}

.path-scene {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 300 / 420;
}

@media (min-width: 900px) {
  .path-scene { max-width: 420px; }
}

/* ---------- Realistic 3D Patient Case File (primary Section-3 visual) ---------- */
.case-file {
  position: absolute;
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 220px;
  z-index: 3;
}

.case-file__folder {
  position: relative;
  aspect-ratio: 4 / 3.05;
  border-radius: 12px;
  background: linear-gradient(155deg, #FDFDF9 0%, var(--color-sage-light) 100%);
  border-left: 4px solid var(--color-dark);
  box-shadow:
    0 30px 46px -14px rgba(22, 61, 42, 0.30),
    0 10px 20px rgba(22, 61, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16% 15%;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  animation: case-file-float 10s ease-in-out infinite;
}

.path-scene.is-active .case-file__folder { opacity: 1; }

.case-file__folder-back {
  position: absolute;
  inset: 7px -7px -7px 7px;
  z-index: -1;
  border-radius: 12px;
  background: var(--color-sage);
  box-shadow: 0 22px 34px rgba(22, 61, 42, 0.14);
  transform: rotate(-3deg);
}

.case-file__folder-tab {
  position: absolute;
  top: -10px;
  left: 18px;
  width: 36%;
  height: 13px;
  background: var(--color-sage-light);
  border: 1px solid var(--color-border);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.case-file__folder-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.07em;
  color: var(--color-dark);
}

.case-file__folder-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-secondary);
  margin: 7px 0;
  border-radius: 2px;
}

.case-file__folder-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Small supporting document chips floating around the case file */
.case-file__doc {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 9px;
  box-shadow: 0 12px 22px rgba(22, 61, 42, 0.14);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  z-index: 2;
}

.path-scene.is-active .case-file__doc { opacity: 1; }

.case-file__doc-icon {
  display: flex;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.case-file__doc--history {
  top: -9%;
  left: -30%;
  animation: case-file-float-a 8s ease-in-out infinite;
  transition-delay: 0.2s;
}

.case-file__doc--meds {
  top: 42%;
  right: -34%;
  animation: case-file-float-b 9.5s ease-in-out infinite;
  transition-delay: 0.4s;
}

.case-file__doc--approach {
  bottom: -11%;
  left: -20%;
  animation: case-file-float-c 11s ease-in-out infinite;
  transition-delay: 0.6s;
}

@keyframes case-file-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes case-file-float-a {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-7px) rotate(-4deg); }
}

@keyframes case-file-float-b {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(8px) rotate(7deg); }
}

@keyframes case-file-float-c {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
}

@media (max-width: 640px) {
  .case-file { top: -2%; width: 66%; max-width: 190px; }
  .case-file__doc { padding: 6px 8px; font-size: 9.5px; gap: 5px; }
  .case-file__doc--history { left: -16%; }
  .case-file__doc--meds { right: -18%; }
  .case-file__doc--approach { left: -10%; }
}

/* Generic protocol stack (small, secondary) */
.path-scene__generic {
  position: absolute;
  top: 4%;
  right: -4%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed var(--color-border);
  border-radius: 10px;
  opacity: 0.7;
}

.path-scene__generic-line {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
  text-decoration: line-through;
  text-decoration-color: rgba(82, 97, 88, 0.4);
}

@media (max-width: 640px) {
  .path-scene__generic { display: none; }
}

/* Path line + traveling dot */
.path-scene__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.path-scene__line {
  transition: stroke-dashoffset 1.6s var(--ease-out);
}

.path-scene.is-active .path-scene__line {
  stroke-dashoffset: 0;
}

.path-scene__dot {
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(52, 122, 75, 0.6));
}

.path-scene.is-active .path-scene__dot {
  opacity: 1;
  animation: dot-travel 3.6s var(--ease-out) 1.6s forwards;
}

@keyframes dot-travel {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(150px); }
  55%  { transform: translateY(150px); }
  100% { transform: translateY(300px); }
}

/* Nodes */
.path-scene__node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.path-scene__node--2 { top: 46%; }
.path-scene__node--3 { bottom: 4%; }

.path-scene__node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-secondary);
  box-shadow: 0 4px 10px rgba(22, 61, 42, 0.16);
}

.path-scene__node-dot--final {
  background: var(--color-dark);
  border-color: var(--color-dark);
  transition: box-shadow 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.path-scene.is-lit .path-scene__node-dot--final {
  box-shadow: 0 0 0 8px rgba(22, 61, 42, 0.14), 0 6px 16px rgba(22, 61, 42, 0.25);
  transform: scale(1.08);
}

.path-scene__node-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.path-scene__node-label--final {
  transition: background-color 0.6s var(--ease-out), color 0.6s var(--ease-out);
}

.path-scene.is-lit .path-scene__node-label--final {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ---------- Section transition ---------- */
.approach__transition {
  height: 56px;
  margin-top: 44px;
  background: linear-gradient(to bottom, #EEF5EA 0%, #EEF5EA 100%);
}

@media (prefers-reduced-motion: reduce) {
  .case-file__folder,
  .case-file__doc--history,
  .case-file__doc--meds,
  .case-file__doc--approach {
    animation: none;
  }

  .case-file__folder,
  .case-file__doc {
    opacity: 1;
    transition: none;
  }

  .path-scene__line {
    transition: none;
    stroke-dashoffset: 0;
  }

  .path-scene__dot {
    animation: none;
    opacity: 1;
    transform: translateY(300px);
  }

  .path-scene__node-dot--final {
    box-shadow: 0 0 0 8px rgba(22, 61, 42, 0.14), 0 6px 16px rgba(22, 61, 42, 0.25);
  }

  .path-scene__node-label--final {
    background: var(--color-dark);
    color: var(--color-white);
  }

  .approach__row-item { transition: none; }
}

/* ============================================
   SECTION 4: DR. GAURAV SHARMA / DOCTOR AUTHORITY
   ============================================ */
.authority {
  position: relative;
  background: var(--color-bg);
  padding: 64px 20px 0;
  overflow: hidden;
}

.authority__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.authority__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .authority__row {
    grid-template-columns: 46% 1fr;
    gap: 56px;
  }
}

/* ---------- Left: doctor photo ---------- */
.authority__media {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .authority__media {
    max-width: 100%;
    margin: 0;
  }
}

.authority__photo-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 540 / 640;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(22, 61, 42, 0.18), 0 6px 14px rgba(22, 61, 42, 0.08);
}

.authority__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Styled image fallback (shown only if the real asset fails to load) ---------- */
.img-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-sage-light);
  text-align: center;
  padding: 16px;
}

.img-error .img-fallback { display: flex; }
.img-error img { display: none; }

.img-fallback svg { color: var(--color-secondary); opacity: 0.55; }

.img-fallback span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.authority__photo-layer {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: -14px;
  right: 14px;
  bottom: -18px;
  border-radius: 26px;
  background: linear-gradient(155deg, var(--color-sage) 0%, var(--color-sage-light) 100%);
}

@media (min-width: 900px) {
  .authority__photo-layer {
    left: -18px;
    right: 18px;
  }
}

/* ---------- Right: content ---------- */
.authority__content {
  position: relative;
  z-index: 2;
}

.authority__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.authority__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .authority__headline { font-size: 42px; }
}

@media (min-width: 900px) {
  .authority__headline { font-size: 50px; }
}

.authority__highlight {
  background: var(--color-sage);
  color: var(--color-dark);
  padding: 0 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.authority__intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 48ch;
  margin: 0 0 26px;
}

/* Credential rows */
.authority__credentials {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.authority__credential {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--color-border);
}

.authority__credential:first-child {
  border-top: 1px solid var(--color-border);
}

.authority__credential-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-secondary);
}

.authority__credential-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.authority__credential-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--color-dark);
}

.authority__credential-sub {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.authority__trust-statement {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  font-style: italic;
  max-width: 46ch;
  padding-left: 14px;
  border-left: 2px solid var(--color-sage);
  margin: 0;
}

/* ---------- Large 3D trust seal ---------- */
.authority__seal-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  pointer-events: none;
}

@media (min-width: 900px) {
  .authority__seal-wrap {
    position: absolute;
    top: 8%;
    right: -4%;
    z-index: 1;
    margin-top: 0;
  }
}

@media (min-width: 1180px) {
  .authority__seal-wrap {
    right: -8%;
  }
}

.trust-seal {
  position: relative;
  width: 260px;
  height: 260px;
}

@media (min-width: 900px) {
  .trust-seal {
    width: 340px;
    height: 340px;
    opacity: 0.9;
  }
}

.trust-seal__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(52, 122, 75, 0.28);
  animation: seal-rotate 16s linear infinite;
}

.trust-seal__ring--outer {
  animation-duration: 18s;
}

.trust-seal__ring--mid {
  inset: 14%;
  border-style: solid;
  border-color: rgba(52, 122, 75, 0.2);
  animation-duration: 14s;
  animation-direction: reverse;
}

@keyframes seal-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.trust-seal__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, #2a5c3d 0%, var(--color-dark) 70%);
  color: var(--color-white);
  box-shadow: 0 20px 40px rgba(22, 61, 42, 0.28), inset 0 2px 6px rgba(255, 255, 255, 0.15);
}

.trust-seal__paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trust-seal__path {
  transition: stroke-dashoffset 0.9s var(--ease-out);
}

.trust-seal.is-active .trust-seal__path[data-path="1"] { transition-delay: 0.1s; }
.trust-seal.is-active .trust-seal__path[data-path="2"] { transition-delay: 0.3s; }
.trust-seal.is-active .trust-seal__path[data-path="3"] { transition-delay: 0.5s; }

.trust-seal.is-active .trust-seal__path {
  stroke-dashoffset: 0;
}

.trust-seal__token {
  position: absolute;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.85);
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(22, 61, 42, 0.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  animation: token-float 6s ease-in-out infinite;
}

.trust-seal.is-active .trust-seal__token {
  opacity: 1;
  transform: translateY(0);
}

.trust-seal.is-active .trust-seal__token--1 { transition-delay: 0.05s; }
.trust-seal.is-active .trust-seal__token--2 { transition-delay: 0.22s; }
.trust-seal.is-active .trust-seal__token--3 { transition-delay: 0.4s; }

.trust-seal__token--1 {
  top: 13%;
  left: 8%;
  animation-delay: 0.2s;
}

.trust-seal__token--2 {
  top: 13%;
  right: 6%;
  animation-delay: 1s;
}

.trust-seal__token--3 {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.8s;
}

.trust-seal.is-active .trust-seal__token--3 {
  transform: translateX(-50%) translateY(0);
}

@keyframes token-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

/* ---------- Section transition ---------- */
.authority__transition {
  height: 56px;
  margin-top: 48px;
  background: linear-gradient(to bottom, var(--color-bg) 0%, #EEF5EA 100%);
}

@media (max-width: 899px) {
  .trust-seal { width: 220px; height: 220px; }
  .trust-seal__core { width: 60px; height: 60px; }
  .trust-seal__token { font-size: 10.5px; padding: 4px 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-seal__ring { animation: none; }
  .trust-seal__token { animation: none; }

  .trust-seal__path {
    transition: none;
    stroke-dashoffset: 0;
  }

  .trust-seal__token {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .trust-seal__token--3 {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTION 5: PATIENT PROOF
   ============================================ */
.proof {
  position: relative;
  background: #EEF5EA;
  padding: 64px 20px 0;
  overflow: hidden;
}

.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.proof__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.proof__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.proof__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.24;
  color: var(--color-text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .proof__headline { font-size: 38px; }
}

@media (min-width: 900px) {
  .proof__headline { font-size: 46px; }
}

.proof__highlight {
  background: var(--color-sage);
  color: var(--color-dark);
  padding: 0 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.proof__intro {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ---------- Grid: quote mark + two testimonial cards ---------- */
.proof__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .proof__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Medium 3D quote mark, floating behind/between the cards */
.proof__quote-mark {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 96px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.16;
  animation: quote-float 9s ease-in-out infinite;
}

.proof__quote-mark svg {
  width: 100%;
  height: 100%;
}

.proof__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 235, 213, 0.7) 0%, rgba(220, 235, 213, 0) 70%);
}

.proof__bubble--a {
  width: 40px;
  height: 40px;
  top: -18px;
  right: -30px;
}

.proof__bubble--b {
  width: 26px;
  height: 26px;
  bottom: -14px;
  left: -26px;
}

@keyframes quote-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(2deg); }
}

@media (max-width: 759px) {
  .proof__quote-mark {
    width: 72px;
    height: 58px;
    top: -26px;
  }
}

/* Testimonial cards */
.proof__card {
  position: relative;
  z-index: 2;
}

.proof__card-surface {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(22, 61, 42, 0.10), 0 4px 10px rgba(22, 61, 42, 0.05);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.proof__card-surface::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10px;
  left: -8px;
  right: 8px;
  bottom: -10px;
  border-radius: 20px;
  background: var(--color-sage-light);
}

.proof__card:hover .proof__card-surface {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(22, 61, 42, 0.14), 0 6px 14px rgba(22, 61, 42, 0.06);
}

.proof__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.proof__card-surface.img-error {
  min-height: 240px;
  border-radius: 20px;
}

.proof__card-surface.img-error .img-fallback {
  border-radius: 12px;
}

/* ---------- Disclaimer ---------- */
.proof__disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 28px auto 0;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .proof__disclaimer { font-size: 11px; }
}

/* ---------- Section transition ---------- */
.proof__transition {
  height: 56px;
  margin-top: 44px;
  background: linear-gradient(to bottom, #EEF5EA 0%, #F0F5EC 100%);
}

@media (prefers-reduced-motion: reduce) {
  .proof__quote-mark { animation: none; }
  .proof__card-surface { transition: none; }
}

/* ============================================
   SECTION 6: WHAT HAPPENS NEXT?
   ============================================ */
.journey {
  position: relative;
  background: #F0F5EC;
  padding: 64px 20px 0;
  overflow: hidden;
}

.journey__inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.journey__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.journey__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.journey__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.22;
  color: var(--color-text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .journey__headline { font-size: 40px; }
}

@media (min-width: 900px) {
  .journey__headline { font-size: 48px; }
}

.journey__highlight {
  background: var(--color-sage);
  color: var(--color-dark);
  padding: 0 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.journey__intro {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ---------- Vertical timeline ---------- */
.journey__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
  padding: 4px 0;
}

@media (min-width: 900px) {
  .journey__timeline {
    max-width: 980px;
    gap: 8px;
  }
}

.journey__path-svg {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 20px;
  width: 4px;
  height: calc(100% - 12px);
  z-index: 0;
}

@media (min-width: 900px) {
  .journey__path-svg {
    left: 50%;
    transform: translateX(-50%);
  }
}

.journey__path-line {
  transition: stroke-dashoffset 1.8s var(--ease-out);
}

.journey__timeline.is-active .journey__path-line {
  stroke-dashoffset: 0;
}

.journey__path-marker {
  position: absolute;
  bottom: -6px;
  left: 20px;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-dark);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  z-index: 1;
}

@media (min-width: 900px) {
  .journey__path-marker { left: 50%; }
}

.journey__timeline.is-active .journey__path-marker {
  opacity: 1;
  transition-delay: 1.6s;
  box-shadow: 0 0 0 7px rgba(22, 61, 42, 0.14);
}

/* Step blocks */
.journey__step {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  padding-left: 44px;
}

@media (min-width: 900px) {
  .journey__step {
    width: 46%;
    padding-left: 0;
  }

  .journey__step--left {
    margin-right: auto;
    flex-direction: row-reverse;
    text-align: right;
  }

  .journey__step--right {
    margin-left: auto;
  }
}

.journey__step-node {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-sage);
  box-shadow: 0 6px 16px rgba(22, 61, 42, 0.10);
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 900px) {
  .journey__step-node {
    position: static;
  }
}

.journey__step-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-secondary);
}

.journey__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.journey__step-icon {
  display: none;
}

@media (min-width: 900px) {
  .journey__step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--color-secondary);
    margin-bottom: 2px;
  }

  .journey__step--left .journey__step-icon { align-self: flex-end; }
  .journey__step--right .journey__step-icon { align-self: flex-start; }
}

.journey__step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  color: var(--color-text);
  margin: 0;
}

@media (min-width: 900px) {
  .journey__step-title { font-size: 25px; }
}

.journey__step-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 34ch;
}

@media (min-width: 900px) {
  .journey__step--left .journey__step-desc { margin-left: auto; }
}

/* ---------- 3D objects (realistic, CSS-built) ---------- */
.journey__object {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 6px 0;
  padding-left: 44px;
}

@media (min-width: 900px) {
  .journey__object {
    padding-left: 0;
    margin: -18px 0;
  }

  .journey__object--phone { justify-content: flex-start; padding-left: 54%; }
  .journey__object--tablet { justify-content: flex-end; padding-right: 54%; }
  .journey__object--doc { justify-content: flex-start; padding-left: 54%; }
}

/* Phone */
.phone3d {
  perspective: 700px;
}

.phone3d__body {
  position: relative;
  width: 116px;
  height: 232px;
  border-radius: 22px;
  background: linear-gradient(155deg, #1e2b23 0%, var(--color-dark) 60%, #0f2317 100%);
  padding: 8px;
  box-shadow:
    0 30px 46px rgba(22, 61, 42, 0.22),
    0 8px 16px rgba(22, 61, 42, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate3d(0.3, 1, 0, 10deg) rotateZ(-4deg);
  animation: phone-float 7s ease-in-out infinite;
}

.phone3d__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.phone3d__screen {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(160deg, #ffffff 0%, var(--color-sage-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.phone3d__check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(22, 61, 42, 0.14);
}

.phone3d__label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
  line-height: 1.3;
}

.phone3d__price {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-dark);
}

@keyframes phone-float {
  0%, 100% { transform: rotate3d(0.3, 1, 0, 10deg) rotateZ(-4deg) translateY(0); }
  50% { transform: rotate3d(0.3, 1, 0, 7deg) rotateZ(-2deg) translateY(-12px); }
}

/* Tablet / consultation device */
.tablet3d {
  perspective: 900px;
}

.tablet3d__body {
  position: relative;
  width: 210px;
  height: 148px;
  border-radius: 16px;
  background: linear-gradient(155deg, #24382c 0%, var(--color-dark) 65%, #0f2317 100%);
  padding: 9px;
  box-shadow:
    0 28px 44px rgba(22, 61, 42, 0.20),
    0 6px 14px rgba(22, 61, 42, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate3d(1, 0.2, 0, -8deg) rotateZ(3deg);
  animation: tablet-float 8s ease-in-out infinite;
}

.tablet3d__screen {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(160deg, #ffffff 0%, var(--color-sage-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tablet3d__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--color-sage) 0%, var(--color-secondary) 100%);
}

.tablet3d__name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-dark);
}

.tablet3d__tag {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-sage);
  padding: 2px 8px;
  border-radius: 999px;
}

@keyframes tablet-float {
  0%, 100% { transform: rotate3d(1, 0.2, 0, -8deg) rotateZ(3deg) translateY(0); }
  50% { transform: rotate3d(1, 0.2, 0, -5deg) rotateZ(1deg) translateY(-10px); }
}

/* Case document */
.doc3d {
  position: relative;
  width: 168px;
  height: 200px;
  animation: doc-float 7.5s ease-in-out infinite;
}

.doc3d__sheet {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 20px 38px rgba(22, 61, 42, 0.16), 0 6px 12px rgba(22, 61, 42, 0.08);
}

.doc3d__sheet--back {
  transform: translate(10px, 10px) rotate(4deg);
  background: var(--color-sage-light);
  box-shadow: none;
}

.doc3d__sheet--front {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  transform: rotate(-2deg);
}

.doc3d__line {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
}

.doc3d__line--title {
  height: 8px;
  width: 70%;
  background: var(--color-secondary);
  opacity: 0.75;
  border-radius: 3px;
  font-size: 0;
}

@keyframes doc-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

@media (max-width: 899px) {
  .phone3d__body { width: 96px; height: 192px; }
  .tablet3d__body { width: 176px; height: 124px; }
  .doc3d { width: 140px; height: 168px; }
}

/* ---------- CTA ---------- */
.journey__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
  text-align: center;
}

.journey__cta {
  width: fit-content;
}

@media (max-width: 480px) {
  .journey__cta { width: 100%; max-width: 340px; }
}

.journey__availability {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Section transition ---------- */
.journey__transition {
  height: 56px;
  margin-top: 48px;
  background: linear-gradient(to bottom, #F0F5EC 0%, var(--color-sage-light) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .journey__path-line { transition: none; stroke-dashoffset: 0; }
  .journey__path-marker { opacity: 1; transition: none; box-shadow: 0 0 0 7px rgba(22, 61, 42, 0.14); }
  .phone3d__body,
  .tablet3d__body,
  .doc3d {
    animation: none;
  }
}

/* ============================================
   SECTION 8: FAQ + FINAL CTA
   ============================================ */
.faq {
  position: relative;
  background: var(--color-sage-light);
  padding: 64px 20px 0;
  overflow: hidden;
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.faq__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 8px;
}

.faq__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.faq__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.22;
  color: var(--color-text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .faq__headline { font-size: 40px; }
}

@media (min-width: 900px) {
  .faq__headline { font-size: 46px; }
}

.faq__highlight {
  background: var(--color-sage);
  color: var(--color-dark);
  padding: 0 8px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.faq__intro {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ---------- Subtle realistic 3D element ---------- */
.faq__visual {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
}

.answer-doc {
  position: relative;
  width: 190px;
  aspect-ratio: 130 / 158;
}

.answer-doc__sheet {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--color-white);
}

.answer-doc__sheet--back {
  background: var(--color-sage);
  transform: rotate(-6deg) translate(6px, 8px);
  box-shadow: 0 12px 22px rgba(22, 61, 42, 0.08);
}

.answer-doc__sheet--front {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 22px 20px;
  transform: rotate(-2deg);
  box-shadow: 0 26px 44px rgba(22, 61, 42, 0.16), 0 8px 16px rgba(22, 61, 42, 0.08);
  animation: answer-doc-float 9.5s ease-in-out infinite;
}

.answer-doc__line {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
}

.answer-doc__line--title {
  height: 8px;
  width: 68%;
  background: var(--color-secondary);
  opacity: 0.75;
}

.answer-doc__line--short { width: 46%; }

.answer-doc__check {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 10px 20px rgba(22, 61, 42, 0.24), 0 0 0 5px var(--color-sage-light);
  z-index: 2;
}

@keyframes answer-doc-float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-8px); }
}

@media (max-width: 640px) {
  .answer-doc { width: 168px; }
}

/* ---------- FAQ accordion ---------- */
.faq__list {
  max-width: 900px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(22, 61, 42, 0.05);
  overflow: hidden;
}

.faq__q-wrap { margin: 0; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--color-text);
  cursor: pointer;
}

@media (min-width: 640px) {
  .faq__question { padding: 22px 26px; font-size: 16.5px; }
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq__icon-h,
.faq__icon-v {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-secondary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.faq__icon-h { width: 14px; height: 2px; }
.faq__icon-v { width: 2px; height: 14px; }

.faq__question[aria-expanded="true"] .faq__icon-v {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__question[aria-expanded="true"] .faq__icon-h {
  background: var(--color-dark);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-text {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  transition: opacity 0.28s var(--ease-out), padding 0.3s var(--ease-out), max-height 0.3s var(--ease-out);
}

@media (min-width: 640px) {
  .faq__answer-text { padding: 0 26px; }
}

.faq__item.is-open .faq__answer-text {
  max-height: 240px;
  opacity: 1;
  padding: 0 20px 20px;
}

@media (min-width: 640px) {
  .faq__item.is-open .faq__answer-text { padding: 0 26px 22px; }
}

.faq__question:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: -2px;
}

/* ---------- Final CTA ---------- */
.faq__cta {
  margin: 48px auto 64px;
  max-width: 640px;
  text-align: center;
  background: var(--color-sage);
  border-radius: var(--radius-lg);
  padding: 40px 26px;
  box-shadow: 0 18px 40px rgba(22, 61, 42, 0.10);
}

@media (min-width: 640px) {
  .faq__cta { padding: 48px 48px; }
}

.faq__cta-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.25;
  color: var(--color-dark);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .faq__cta-headline { font-size: 32px; }
}

.faq__cta-copy {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
}

.faq__cta-btn {
  width: 100%;
  max-width: 360px;
}

@media (min-width: 480px) {
  .faq__cta-btn { width: fit-content; }
}

.faq__cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.faq__cta-microcopy {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 12px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .answer-doc__sheet--front { animation: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-dark);
  padding: 44px 20px;
}

.site-footer__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__sanskrit {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-bg);
  margin: 0 0 10px;
}

@media (min-width: 640px) {
  .site-footer__sanskrit { font-size: 26px; }
}

.site-footer__translation {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #C9D8CC;
  margin: 0 0 26px;
}

.site-footer__divider {
  width: 40px;
  height: 1px;
  margin: 0 auto 20px;
  background: rgba(201, 216, 204, 0.3);
}

.site-footer__legal {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #C9D8CC;
  opacity: 0.8;
  margin: 0;
}

/* ============================================
   CONVERSION MICRO-UX: 25% SCROLL TRUST POPUP
   ============================================ */
.trust-popup {
  position: fixed;
  z-index: 60;
  right: 26px;
  bottom: 26px;
  width: 400px;
  max-width: calc(100% - 24px);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-dark);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(22, 61, 42, 0.16), 0 6px 16px rgba(22, 61, 42, 0.08);
  padding: 22px 22px 20px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.trust-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 640px) {
  .trust-popup {
    left: 12px;
    right: 12px;
    bottom: 16px;
    width: auto;
    max-width: none;
    padding: 18px 18px 16px;
  }
}

.trust-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-text-secondary);
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.trust-popup__close:hover {
  background: var(--color-sage);
  color: var(--color-dark);
}

.trust-popup__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 26px 8px 0;
}

.trust-popup__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0 26px 8px 0;
  letter-spacing: -0.005em;
}

.trust-popup__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0 0 14px;
}

.trust-popup__points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 16px;
}

.trust-popup__points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text);
}

.trust-popup__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-secondary);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-popup__point--desktop-only { display: none; }
}

.trust-popup__cta {
  width: 100%;
  height: 50px;
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  .trust-popup {
    transition: opacity 0.2s linear;
    transform: none;
  }
}

/* ============================================
   CONVERSION MICRO-UX: LATE-STAGE STICKY CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  z-index: 55;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- Desktop bar ---------- */
.sticky-cta__inner {
  display: none;
  align-items: center;
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 28px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -10px 30px rgba(22, 61, 42, 0.10);
}

@media (min-width: 900px) {
  .sticky-cta__inner { display: flex; }
}

.sticky-cta__info { flex: 0 0 auto; min-width: 0; }

.sticky-cta__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.sticky-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}

.sticky-cta__sub {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: var(--color-text-secondary);
}

.sticky-cta__points {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 auto;
  padding: 0 12px;
}

.sticky-cta__points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.sticky-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.sticky-cta__cta {
  flex: 0 0 auto;
  height: 52px;
  padding: 0 26px;
  white-space: nowrap;
}

/* ---------- Mobile compact bar ---------- */
.sticky-cta__mobile {
  display: block;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(22, 61, 42, 0.10);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}

@media (min-width: 900px) {
  .sticky-cta__mobile { display: none; }
}

.sticky-cta__mobile-label {
  margin: 0 0 8px 2px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.sticky-cta__mobile-cta {
  display: flex;
  width: 100%;
  height: 54px;
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* Reserve space so the sticky CTA never covers footer content */
body.has-sticky-cta .site-footer {
  padding-bottom: calc(44px + 96px + env(safe-area-inset-bottom));
}

@media (min-width: 900px) {
  body.has-sticky-cta .site-footer { padding-bottom: calc(44px + 96px); }
}

/* ============================================
   THIN SCROLL-PROGRESS INDICATOR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 70;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--color-secondary);
  transform-origin: left;
  transition: width 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress__bar { transition: none; }
}

/* =========================================
   HERO PATIENT PROOF — FINAL RESPONSIVE FIX
   ========================================= */

.hero__proof {
    width: 100%;
    margin: 10px 0 0 !important;
    padding: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    visibility: visible !important;
    opacity: 1 !important;
}

.hero__proof-placeholder {
    position: relative;

    /* Desktop size */
    width: 100% !important;
    max-width: 560px !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    overflow: visible !important;

    visibility: visible !important;
    opacity: 1 !important;
}

/* Actual review image */
.hero__proof-placeholder img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    max-width: 560px !important;
    max-height: none !important;

    margin: 0 auto !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center !important;

    position: relative !important;
    z-index: 5 !important;

    opacity: 1 !important;
    visibility: visible !important;
}

/* Remove old placeholder icon */
.hero__proof-placeholder > svg {
    display: none !important;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .hero__proof {
        margin-top: 8px !important;
    }

    .hero__proof-placeholder {
        max-width: 500px !important;
    }

    .hero__proof-placeholder img {
        max-width: 500px !important;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .hero__proof {
        display: flex !important;
        width: 100% !important;

        margin-top: 6px !important;
        margin-bottom: 0 !important;

        padding: 0 16px !important;

        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero__proof-placeholder {
        display: flex !important;

        width: 100% !important;
        max-width: 360px !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 auto !important;
        padding: 0 !important;

        background: transparent !important;
        border: none !important;
        box-shadow: none !important;

        overflow: visible !important;

        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero__proof-placeholder img {
        display: block !important;

        width: 100% !important;
        max-width: 360px !important;

        height: auto !important;
        max-height: none !important;

        object-fit: contain !important;

        margin: 0 auto !important;

        visibility: visible !important;
        opacity: 1 !important;
    }
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 390px) {

    .hero__proof {
        padding: 0 12px !important;
        margin-top: 4px !important;
    }

    .hero__proof-placeholder {
        max-width: 320px !important;
    }

    .hero__proof-placeholder img {
        max-width: 320px !important;
    }
}
/* =========================================
   TESTIMONIAL IMAGE — FULL CARD WIDTH FIX
   ========================================= */

.proof__card-surface {
  padding: 0 !important;
  margin: 0 !important;

  width: 100% !important;
  max-width: none !important;

  overflow: hidden !important;
  box-sizing: border-box !important;
}

.proof__card-surface .proof__image,
.proof__card-surface > img {
  display: block !important;

  width: 100% !important;
  max-width: none !important;

  height: auto !important;
  min-width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
  object-position: center !important;

  border: 0 !important;
}

/* Fallback should not take any space when image exists */
.proof__card-surface .img-fallback {
  display: none !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
  .proof__card-surface {
    width: 100% !important;
    padding: 0 !important;
  }

  .proof__card-surface .proof__image,
  .proof__card-surface > img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    height: auto !important;
  }
}
/* =========================================
   MOBILE — DR. GAURAV AUTHORITY IMAGE FIX
   ========================================= */

@media (max-width: 899px) {

  .authority {
    display: block !important;
    visibility: visible !important;
  }

  .authority__inner {
    display: block !important;
    visibility: visible !important;
  }

  .authority__row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    visibility: visible !important;
  }

  /* Dr. image MUST appear on mobile */
  .authority__media {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    max-width: 360px !important;

    margin: 0 auto 28px !important;

    order: 1 !important;
  }

  .authority__photo-frame {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    height: auto !important;

    aspect-ratio: 540 / 640 !important;

    overflow: hidden !important;
    border-radius: 22px !important;
  }

  .authority__photo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
  }

  /* If the image genuinely failed to load, keep it hidden and show the
     styled fallback instead — same behaviour as desktop. */
  .authority__photo-frame.img-error .authority__photo {
    display: none !important;
  }

  /* Doctor content comes below the photo */
  .authority__content {
    order: 2 !important;
    width: 100% !important;
  }

  /* Keep the 3D trust element from covering the mobile layout */
  .authority__seal-wrap {
    order: 3 !important;
  }
}


/* Smaller phones */
@media (max-width: 480px) {

  .authority__media {
    max-width: 320px !important;
    margin-bottom: 24px !important;
  }

  .authority__photo-frame {
    border-radius: 20px !important;
  }
}
#authority .authority__photo-frame {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: 640px !important;
  overflow: hidden !important;
  background: transparent !important;
}

#authority .authority__photo {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  opacity: 1 !important;
  visibility: visible !important;

  object-fit: cover !important;
  z-index: 999 !important;
}

@media (max-width: 899px) {
  #authority .authority__photo-frame {
    height: 420px !important;
  }
}