:root {
  --bg-color: #FCFCFC;
  --text-primary: #111827;
  --text-secondary: #6B7280;

  --color-peach: #FFE4D6;
  --color-mint: #D1FAE5;
  --color-lavender: #E0E7FF;
  --color-cream: #FEF3C7;
  --color-dark: #18181B;
  --color-white: #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 20px 40px -10px rgba(0, 0, 0, 0.12);

  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  /* Handled by lenis */
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Background Blobs */
.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
  border-radius: 50%;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--color-peach);
}

.blob-2 {
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--color-lavender);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(24, 24, 27, 0.2);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-outline {
  border: 1px solid var(--text-secondary);
  color: var(--text-primary);
}

/* Navbar */
.navbar {
  padding: 24px 48px;
  display: flex;
  justify-content: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--color-lavender);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* ===================== HERO SECTION — MODERN & ANIMATED ===================== */

/* Cursor Spotlight */
.cursor-spotlight {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 228, 214, 0.18) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

/* Hero wrapper — tall absolute-position stage */
.hero {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 320px 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 780px;
  overflow: visible;
}

/* Background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FFE4D6 0%, transparent 70%);
  top: -100px;
  left: -80px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #E0E7FF 0%, transparent 70%);
  top: 50px;
  right: -120px;
  animation-delay: 2.5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #D1FAE5 0%, transparent 70%);
  bottom: 0;
  left: 30%;
  animation-delay: 5s;
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Hero particles container */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(107, 114, 128, 0.15);
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0% {
    transform: translateY(100%) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-120vh) rotate(720deg);
    opacity: 0;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-10px);
  animation: badgeIn 0.6s 0.1s ease forwards;
}

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

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
  }
}

/* Hero Title */
.hero-title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero-title-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
  overflow: hidden;
}

.title-word {
  display: inline-block;
}

.text-accent {
  color: #18181B;
}

/* Animated pill */
.highlight-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #FFE4D6, #FED7AA);
  padding: 4px 28px;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1.5px rgba(255, 140, 80, 0.2);
  transition: transform 0.3s ease;
}

.highlight-pill:hover {
  transform: scale(1.04) rotate(-1deg);
}

.pill-text {
  position: relative;
  z-index: 1;
}

.highlight-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

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

/* Subtitle with typewriter */
.hero-subtitle-wrap {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 460px;
  opacity: 0;
  transform: translateY(12px);
}

.typewriter {
  color: var(--text-primary);
  font-weight: 700;
}

.type-cursor {
  color: #6B7280;
  animation: blink 0.9s step-end infinite;
  font-weight: 300;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* CTA Buttons */
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
}

.magnetic-btn {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.magnetic-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(24, 24, 27, 0.25);
}

.btn-inner {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.glass-btn {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* Stats Row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(14px);
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.stat-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s 2.5s ease forwards;
  z-index: 2;
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.scroll-dot {
  width: 100%;
  height: 40%;
  background: var(--color-dark);
  border-radius: 1px;
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(280%);
  }
}

/* ===================== FLOATING CARDS — scattered around text ===================== */
.float-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.float-card:hover {
  box-shadow: 0 32px 80px -10px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px) !important;
}

/* Glassmorphism */
.glass-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Card shine sweep */
.card-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: cardShine 5s ease-in-out infinite;
}

@keyframes cardShine {

  0%,
  100% {
    left: -80%;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  60% {
    left: 140%;
    opacity: 0;
  }
}

/* Card 1: Emotion — Left, vertically centred */
.card-emotion {
  left: 4px;
  top: 30%;
  transform: translateY(-60%);
  width: 250px;
  background: linear-gradient(135deg, #FFE4D6 0%, #FFDBC5 100%);
}

/* Card 2: Doctor — Right, vertically centred */
.card-doctor {
  right: 4px;
  top: 20%;
  transform: translateY(-55%);
  width: 280px;
  padding: 16px;
  background: linear-gradient(145deg, #EEF2FF 0%, #E0E7FF 100%);
  z-index: 2;
}

/* Card 3: Rating — Bottom Left */
.card-rating {
  left: 60px;
  bottom: 150px;
  width: 200px;
  background: linear-gradient(145deg, #1A1A1E 0%, #27272A 100%);
  color: white;
}

/* Card 4: Appointment — Bottom Right */
.card-appointment {
  right: 80px;
  bottom: 120px;
  width: 200px;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  padding: 20px;
}

.card-emotion p {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.emojis {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.emoji-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.emoji-btn:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.85);
}

.emoji-btn.active {
  background: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 140, 80, 0.3);
  transform: scale(1.1);
}

/* Mood bar */
.mood-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  overflow: hidden;
}

.mood-fill {
  height: 100%;
  width: 55%;
  background: linear-gradient(90deg, #F97316, #FBBF24);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* Pulse ring on card-emotion */
.card-pulse-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: inherit;
  border: 2px solid rgba(249, 115, 22, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseRing {

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

  50% {
    opacity: 0;
    transform: scale(1.025);
  }
}

/* Card 2: Doctor — full styles kept, position overridden above */

/* Online badge */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulseDot 2s ease-in-out infinite;
}

.doc-header p {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.doc-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.95);
}

.tag.dark {
  background: var(--color-dark);
  color: white;
}

.active-tag {
  background: var(--color-dark);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.doc-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  margin-bottom: 12px;
  position: relative;
}

.doc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.doc-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay span {
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.doc-bottom p {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}

.pain-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pain-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s;
}

.pain-dots span:hover {
  background: rgba(0, 0, 0, 0.25);
  transform: scale(1.3);
}

.pain-dots span.active {
  background: var(--color-dark);
  transform: scale(1.2);
}

/* Card 3: Rating — full styles kept, position overridden above */
.rating-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rating-score {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stars {
  display: flex;
  gap: 2px;
  margin: 8px 0;
}

.star {
  color: #FBBF24;
  font-size: 18px;
  display: inline-block;
  animation: starPop 0.4s calc(var(--i) * 0.1s + 1.2s) ease both;
}

@keyframes starPop {
  from {
    transform: scale(0) rotate(-30deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.rating-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.rating-bar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.rating-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FBBF24, #F59E0B);
  border-radius: 2px;
  animation: barFill 1.5s 1.5s ease forwards;
}

@keyframes barFill {
  to {
    width: var(--w);
  }
}

/* Card 4: Appointment — full styles kept, position overridden above */
.appt-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #059669;
  margin-bottom: 10px;
}

.appt-time {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.appt-doc {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.appt-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  background: white;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #059669;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s 2.5s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.scroll-dot {
  width: 100%;
  height: 40%;
  background: var(--color-dark);
  border-radius: 1px;
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(280%);
  }
}

/* Services Bento */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ===================== HORIZONTAL SCROLL SERVICES ===================== */
.services-pin-wrapper {
  position: relative;
  width: 100%;
  background: var(--bg-color);
  color: var(--text-primary);
  overflow: visible;
}

.services-scroll-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

.services-header {
  padding: 0 5vw;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
}

.services-header p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
}

.services-track {
  display: flex;
  gap: 40px;
  padding: 0 5vw;
  width: max-content;
}

.service-slide {
  width: 450px;
  height: 550px;
  flex-shrink: 0;
  perspective: 1000px;
}

.service-slide-inner {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-slide:nth-child(1) .service-slide-inner {
  background: linear-gradient(145deg, #fff, var(--color-peach));
}

.service-slide:nth-child(2) .service-slide-inner {
  background: linear-gradient(145deg, #fff, var(--color-mint));
}

.service-slide:nth-child(3) .service-slide-inner {
  background: linear-gradient(145deg, #fff, var(--color-lavender));
}

.service-slide:nth-child(4) .service-slide-inner {
  background: linear-gradient(145deg, #fff, var(--color-cream));
}

.service-slide:nth-child(5) .service-slide-inner {
  background: linear-gradient(145deg, #fff, #E0F2FE);
}

.service-slide-inner:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
  width: 100%;
  height: 60%;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-slide-inner:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 40%;
}

.service-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-slide {
    width: 320px;
    height: 480px;
  }
}

/* Showcase Section */
.showcase {
  background: var(--color-white);
  margin: 120px 0;
  padding: 120px 24px;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-visual {
  background: var(--color-lavender);
  border-radius: var(--radius-lg);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--color-white);
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 8px solid var(--color-dark);
  position: relative;
  overflow: hidden;
}

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

.phone-ui-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ui-bar {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.ui-pill {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
}

.showcase-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.showcase-content h2 span {
  display: block;
}

.showcase-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.app-btn {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
}

.app-buttons.small .app-btn {
  padding: 8px 16px;
  font-size: 12px;
}

/* How It Works */
.how-it-works {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.work-card-wide {
  grid-column: span 2;
}

.bg-lavender {
  background: #F3F4F6;
}

.bg-mint {
  background: var(--color-mint);
}

.bg-cream {
  background: #F9FAFB;
}

.work-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.work-card p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 300px;
}

.work-mockup {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.mockup-input {
  background: white;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  font-weight: 500;
  font-size: 14px;
  width: 80%;
  text-align: left;
  margin-top: 32px;
}

.mockup-body-map {
  font-size: 80px;
  text-align: center;
  margin-top: 32px;
}

.row-mockup {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.row-mockup .ui-pill {
  box-shadow: var(--shadow-soft);
}

.row-mockup .ui-pill.active {
  background: var(--color-mint);
}

/* Testimonials */
.testimonials {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
}

.testi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.avatar-cluster {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.avatar {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-color);
  box-shadow: var(--shadow-soft);
}

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

.a1 {
  width: 240px;
  height: 240px;
  top: 0;
  right: 0;
  z-index: 1;
}

.a2 {
  width: 160px;
  height: 160px;
  bottom: 40px;
  left: 0;
  z-index: 2;
}

.center-metric {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-lavender);
  width: 140px;
  height: 140px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid white;
}

.center-metric h3 {
  font-size: 24px;
  font-weight: 800;
}

.center-metric p {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testi-content h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.testi-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.testi-author strong {
  display: block;
  font-size: 16px;
}

.testi-author span {
  color: var(--text-secondary);
  font-size: 14px;
}

.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.slide-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s;
}

.slide-btn:hover {
  background: var(--color-dark);
  color: white;
}

/* CTA */
.cta-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
}

.cta-box {
  background: var(--color-peach);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-box p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background: var(--color-white);
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.link-col h4 {
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 700;
}

.link-col a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 14px;
}

.link-col a:hover {
  color: var(--color-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 80px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
  font-size: 13px;
}

@media (max-width: 960px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-dark {
    min-height: 400px;
  }

  .showcase-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-content {
    order: -1;
  }

  .app-buttons {
    justify-content: center;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .work-card-wide {
    grid-column: span 1;
  }

  .testi-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .slider-controls {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Hero: stack cards below text on mobile */
  .hero {
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .float-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 90% !important;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Create a flex column after hero-content for cards */
  .hero::after {
    content: '';
    display: block;
    height: 24px;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-orb {
    opacity: 0.5;
  }
}

/* Mobile: cards stack below hero-content in document flow */
@media (max-width: 960px) {

  .card-emotion,
  .card-doctor,
  .card-rating,
  .card-appointment {
    position: relative;
    display: block;
    width: 90% !important;
    max-width: 320px;
    margin: 0 auto 16px;
  }
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.scheduler-box {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.active .scheduler-box {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.close-modal:hover {
  color: var(--color-dark);
}

.calendar-mockup {
  margin: 24px 0;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  margin-bottom: 24px;
}

.cal-grid span {
  font-size: 14px;
  padding: 6px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.cal-grid span.day {
  color: var(--text-secondary);
  font-size: 12px;
  cursor: default;
}

.cal-grid span:hover:not(.day) {
  background: var(--color-lavender);
}

.cal-grid span.active {
  background: var(--color-dark);
  color: white;
}

.time-slots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.time-slots .slot {
  border: 1px solid var(--text-secondary);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slots .slot:hover {
  border-color: var(--color-dark);
}

.time-slots .slot.active {
  background: var(--color-dark);
  color: white;
  border-color: var(--color-dark);
}

.w-100 {
  width: 100%;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 340px;
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  z-index: 99;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content p {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.cookie-content a {
  text-decoration: underline;
  color: var(--color-dark);
  font-weight: 600;
}

.cookie-btns {
  display: flex;
  gap: 8px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* SVG Anim */
.anim-svg {
  width: 64px;
  height: 64px;
  color: var(--color-dark);
}

.gdc-info {
  margin-top: 16px;
  font-size: 11px !important;
  color: var(--text-secondary) !important;
  line-height: 1.4;
}

/* Testimonial slider fixes */
.testi-content {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: opacity 0.5s, transform 0.5s;
}

.testimonial-slide.active {
  position: relative;
  top: auto;
  transform: none;
}

.slider-controls {
  margin-top: 24px;
}

/* ===================== ABOUT US SECTION ===================== */
.about-us {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 120px 0;
  overflow: hidden;
  background-color: var(--bg-color);
}

.about-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  z-index: 1;
}

.about-text-content {
  text-align: center;
  max-width: 650px;
  z-index: 2;
  position: relative;
  padding: 40px;
  text-shadow: 0 4px 30px rgba(252, 252, 252, 0.9);
}

.about-badge {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-title {
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.title-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--color-dark);
}

.italic {
  font-style: italic;
}

.about-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

/* Images */
.about-images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.about-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
}

.img-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 0.5s ease;
}

/* Positions matching the reference */
.img-left {
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 440px;
}

.img-right {
  right: 2%;
  top: 15%;
  width: 320px;
  height: 420px;
}

.img-bottom {
  left: 55%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 440px;
  height: 300px;
}

@media (max-width: 1024px) {
  .about-img {
    display: none;
  }

  /* Hide on smaller screens to focus on text or adjust layout */
  .about-text-content {
    background: transparent;
  }
}

/* ===================== MEET THE DOCTORS SECTION ===================== */
.meet-doctors {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  background: var(--color-white);
}

.md-header {
  text-align: center;
  margin-bottom: 80px;
}

.md-header h2 {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.md-header .title-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}

.md-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  height: 680px;
}

.md-left-area,
.md-right-area {
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.md-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
}

.md-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.md-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.md-box-left {
  margin-top: auto;
  margin-bottom: auto;
  transform: translateY(-40px);
}

.md-controls {
  display: flex;
  gap: 12px;
}

.md-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F3F4F6;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.md-nav-btn:hover {
  background: #E5E7EB;
  transform: scale(1.05);
}

.md-nav-btn.dark {
  background: var(--text-primary);
  color: white;
}

.md-nav-btn.dark:hover {
  background: #374151;
}

.md-center-area {
  flex: 1;
  max-width: 760px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F9FAFB;
  overflow: hidden;
  border-radius: 24px;
}

.md-info {
  position: absolute;
  top: 48px;
  left: 48px;
  z-index: 10;
}

.md-name {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.md-role {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.md-center-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.md-bg-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 65%;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  z-index: 1;
}

.md-center-visual img {
  position: relative;
  z-index: 2;
  height: 92%;
  object-fit: contain;
  transform-origin: bottom center;
}

.md-book-btn {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 100px;
  padding: 8px 8px 8px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 10;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.md-book-btn:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.md-book-btn .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.md-book-btn:hover .icon {
  transform: translateX(4px);
}

.md-trust-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: auto;
  margin-bottom: auto;
  transform: translateY(40px);
}

.md-box-right {
  margin-bottom: 0;
}

/* ===================== PREMIUM CTA SECTION ===================== */
.premium-cta {
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-image {
  width: 100%;
  height: 120%;
  /* Add extra height for parallax */
  position: absolute;
  top: -10%;
  left: 0;
  object-fit: cover;
  transform-origin: center;
  display: block;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 60px;
  max-width: 500px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-row {
  display: flex;
  gap: 30px;
}

.input-group {
  flex: 1;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #E5E7EB;
  padding: 12px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #111827;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #6B7280;
  font-weight: 500;
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: #111827;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0B0F19;
  color: #ffffff;
  padding: 12px 12px 12px 24px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 10px;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 15, 25, 0.2);
  background: #000000;
}

.submit-icon {
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #0B0F19;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== PREMIUM TESTIMONIALS ===================== */
.premium-testimonials {
  padding: 120px 0;
  background-color: #F8F9FA;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

.pt-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.pt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.pt-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  color: #111827;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pt-title .italic {
  font-style: italic;
  font-weight: 500;
}

.pt-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.pt-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  border: none;
}

.pt-prev {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pt-next {
  background: #0B0F19;
  color: #ffffff;
}

.pt-btn:hover {
  transform: translateY(-2px);
}

.pt-next:hover {
  box-shadow: 0 10px 20px rgba(11, 15, 25, 0.2);
}

.pt-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .pt-grid {
    grid-template-columns: 1fr;
  }
}

.pt-dynamic-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .pt-dynamic-cols {
    grid-template-columns: 1fr;
  }
}

.pt-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pt-card-static {
  background: #ffffff;
  padding: 32px;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pt-score {
  display: flex;
  align-items: baseline;
  color: #0E7490;
  margin-bottom: 16px;
}

.pt-score .score-num {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1;
}

.pt-score .score-max {
  font-size: 20px;
  font-weight: 500;
  margin-left: 2px;
}

.pt-static-desc {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 40px;
}

.pt-avatars {
  display: flex;
  margin-bottom: 16px;
}

.pt-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}

.pt-avatars img:first-child {
  margin-left: 0;
}

.pt-static-trust {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 32px;
}

.pt-leave-review {
  margin-top: auto;
  padding: 12px 12px 12px 20px;
}

.pt-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pt-user-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pt-user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #F3F4F6;
}

.pt-user-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.pt-user-info p {
  font-size: 12px;
  color: #6B7280;
}

.pt-text-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.pt-stars-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pt-stars {
  color: #F87171;
  font-size: 16px;
  letter-spacing: 2px;
}

.pt-plus {
  color: #9CA3AF;
  font-size: 20px;
  font-weight: 300;
}

.pt-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.4;
  color: #374151;
}

.variant-top-user .pt-text-card {
  margin-top: 0;
}

.variant-top-text .pt-user-card {
  margin-top: 0;
}

/* ===================== LEGAL PAGES ===================== */

.legal-page {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 180px 24px 100px;
  min-height: 80vh;
  z-index: 1;
}

.legal-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 64px;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.1;
}

.legal-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.legal-container p,
.legal-container ul {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-container ul {
  padding-left: 24px;
}

.legal-container li {
  margin-bottom: 12px;
}

.legal-container a {
  color: var(--color-dark);
  text-decoration: underline;
  text-decoration-color: rgba(24, 24, 27, 0.2);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s;
}

.legal-container a:hover {
  text-decoration-color: var(--color-dark);
}

.legal-container .meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* ===================== HAMBURGER MENU ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== RESPONSIVE — TABLET (max 1024px) ===================== */
@media (max-width: 1024px) {
  /* Navbar */
  .navbar {
    padding: 20px 32px;
    position: relative;
  }

  /* Hero */
  .hero {
    padding: 100px 60px 200px;
  }

  /* About images — hide on tablet, show text */
  .about-img {
    display: none;
  }

  .about-text-content {
    background: transparent;
    padding: 24px;
  }

  /* Meet Doctors — compress layout */
  .meet-doctors {
    padding: 80px 32px;
  }

  .md-header h2 {
    font-size: 40px;
  }

  .md-layout {
    gap: 24px;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .md-left-area,
  .md-right-area {
    width: 200px;
  }

  .md-center-area {
    flex: none;
    width: 100%;
    max-width: 500px;
    height: 500px;
  }

  .md-trust-text {
    transform: none;
    font-size: 13px;
  }

  .md-box-left {
    transform: none;
  }

  /* Testimonials */
  .pt-grid {
    grid-template-columns: 1fr;
  }

  .pt-dynamic-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .cta-container {
    padding: 0 32px;
  }

  .cta-card {
    padding: 40px;
  }

  /* Footer */
  .footer {
    padding: 60px 32px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===================== RESPONSIVE — MOBILE (max 768px) ===================== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(252, 252, 252, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 150;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
  }

  #navBookBtn {
    display: none;
  }

  /* Hero — stacked layout */
  .hero {
    padding: 32px 20px 40px;
    min-height: auto;
    overflow: visible;
  }

  .hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-title-line {
    gap: 0.2em;
    flex-wrap: wrap;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
    padding: 14px 24px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 340px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-unit {
    font-size: 16px;
  }

  .stat-divider {
    display: none;
  }

  /* Float cards — stack below hero content on mobile */
  .float-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  /* Make hero a flex column so cards stack naturally */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero-orb {
    opacity: 0.35;
    transform: scale(0.6);
  }

  /* Hero particles — keep but reduce count via CSS size */
  .hero-particle {
    opacity: 0.15 !important;
  }

  /* Blob */
  .blob-1, .blob-2 {
    width: 300px;
    height: 300px;
    opacity: 0.4;
  }

  /* About */
  .about-us {
    padding: 0 0 60px 0;
  }

  .about-container {
    min-height: auto;
    padding-top: 40px;
  }

  .about-text-content {
    padding: 20px;
    max-width: 100%;
  }

  .about-title {
    font-size: clamp(36px, 9vw, 52px);
  }

  .about-desc {
    font-size: 16px;
  }

  .about-desc br {
    display: none;
  }

  /* Services — vertical scroll on mobile */
  .services-pin-wrapper {
    overflow: visible;
  }

  .services-scroll-container {
    height: auto;
    padding: 40px 0 60px;
  }

  .services-header {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .services-track {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    gap: 24px;
  }

  .service-slide {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .service-slide-inner {
    height: auto;
  }

  .service-img-wrapper {
    height: 220px;
  }

  .service-info {
    height: auto;
    padding: 24px;
  }

  .service-info h3 {
    font-size: 22px;
  }

  /* Meet the Doctors — mobile */
  .meet-doctors {
    padding: 60px 20px;
  }

  .md-header {
    margin-bottom: 40px;
  }

  .md-header h2 {
    font-size: 32px;
  }

  .md-layout {
    flex-direction: column;
    height: auto;
    gap: 20px;
    align-items: center;
  }

  .md-left-area {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    order: 2;
  }

  .md-right-area {
    width: 100%;
    height: auto;
    order: 3;
  }

  .md-img-box {
    width: 120px;
    aspect-ratio: 1/1;
  }

  .md-controls {
    flex: 1;
    justify-content: center;
  }

  .md-center-area {
    width: 100%;
    max-width: 100%;
    height: 400px;
    order: 1;
  }

  .md-info {
    top: 24px;
    left: 24px;
  }

  .md-name {
    font-size: 24px;
  }

  .md-trust-text {
    font-size: 14px;
    transform: none;
    padding: 0 8px;
  }

  .md-book-btn {
    bottom: 24px;
    padding: 8px 8px 8px 20px;
    gap: 16px;
    font-size: 12px;
    white-space: nowrap;
  }

  .md-book-btn .icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Testimonials */
  .premium-testimonials {
    padding: 60px 0;
  }

  .pt-container {
    padding: 0 20px;
  }

  .pt-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }

  .pt-title {
    font-size: clamp(36px, 9vw, 52px);
  }

  .pt-grid {
    grid-template-columns: 1fr;
  }

  .pt-dynamic-cols {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .premium-cta {
    min-height: auto;
  }

  .cta-bg-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  }

  .cta-container {
    padding: 60px 20px;
  }

  .cta-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .cta-title {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Footer */
  .footer {
    padding: 48px 20px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-top: 48px;
  }

  /* Modal / Scheduler */
  .scheduler-box {
    padding: 28px 20px;
    width: 95%;
  }

  /* Cursor spotlight — disable on touch */
  .cursor-spotlight {
    display: none;
  }

  /* Cookie banner */
  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 12px;
  }

  /* Legal pages */
  .legal-page {
    padding: 120px 16px 60px;
  }

  .legal-container {
    padding: 32px 24px;
  }

  .legal-container h1 {
    font-size: 32px;
  }
}

/* ===================== RESPONSIVE — SMALL MOBILE (max 480px) ===================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .highlight-pill {
    padding: 4px 18px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 7px 14px;
  }

  .hero-stats {
    padding: 12px 16px;
  }

  .about-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .md-center-area {
    height: 340px;
  }

  .cta-title {
    font-size: 28px;
  }

  .pt-title {
    font-size: clamp(32px, 9vw, 44px);
  }
}
