/* ================================================================
   PEAKMOTION SURGICAL INSTITUTE — Design System
   Sports Surgery · Orthopedics · Regenerative Medicine
   Toronto, Ontario, Canada
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400;1,9..40,500&display=swap');

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  /* Brand Navy (from logo) */
  --navy-50:  #EEF1FA;
  --navy-100: #D5DCF2;
  --navy-200: #ABB9E5;
  --navy-300: #8196D8;
  --navy-400: #5773CB;
  --navy-500: #2D50BE;
  --navy-600: #1E3A8A;
  --navy-700: #152C6A;
  --navy-800: #0C1E47;
  --navy-900: #0D1E45;
  --navy-950: #060B26;

  /* Brand Gold (from logo) */
  --gold-100: #FBF1D0;
  --gold-200: #F5E09E;
  --gold-300: #EDCA6E;
  --gold-400: #DEB54E;
  --gold-500: #C4950A;
  --gold-600: #A87B08;
  --gold-700: #8B6106;
  --gold-800: #5C4004;

  /* Neutrals */
  --white:      #FFFFFF;
  --bg-warm:    #F8F6F1;
  --bg-cream:   #F2EFE8;
  --bg-light:   #F0EEE9;
  --text-dark:  #0D1E45;
  --text-body:  #475569;
  --text-muted: #94A3B8;
  --border:     #E2E0DB;
  --border-mid: #D1CECC;

  /* Typography */
  --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Blue accent (Pathway-style) */
  --blue-100: #E0F2FE;
  --blue-300: #7DD3FC;
  --blue-400: #38BDF8;
  --blue-500: #0EA5E9;
  --blue-600: #0284C7;
  --blue-700: #0369A1;

  /* Spacing */
  --section-py:    6rem;
  --section-py-sm: 4rem;
  --container-px:  1.5rem;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(13,30,69,0.06);
  --shadow-sm: 0 2px 8px rgba(13,30,69,0.08);
  --shadow-md: 0 4px 20px rgba(13,30,69,0.10);
  --shadow-lg: 0 8px 36px rgba(13,30,69,0.14);
  --shadow-xl: 0 16px 56px rgba(13,30,69,0.18);

  /* Gold shadow */
  --shadow-gold: 0 6px 24px rgba(196,149,10,0.28);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
  --t-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border radii */
  --r-xs:   2px;
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Z-index scale */
  --z-below:  -1;
  --z-base:    0;
  --z-up:     10;
  --z-modal:  50;
  --z-nav:    80;
  --z-toast:  90;
  --z-max:   100;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem,   4vw,  3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.0625rem; font-weight: 600; }

p {
  font-size: 1.0625rem;
  line-height: 1.80;
  color: var(--text-body);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

.section     { padding: var(--section-py) 0; }
.section-sm  { padding: var(--section-py-sm) 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .grid-3 { grid-template-columns: 1fr; } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .grid-4 { grid-template-columns: 1fr; } }

/* ================================================================
   SKIP LINK (Accessibility)
   ================================================================ */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: var(--z-max);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-600));
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base), opacity var(--t-base);
}
.announcement-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 38px; /* sits directly below the announcement bar */
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1rem 0;
  transition: background var(--t-base), box-shadow var(--t-base),
              padding var(--t-base), top var(--t-base);
}
.navbar.scrolled {
  top: 0; /* announcement bar scrolled away */
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(13,30,69,0.10);
  padding: 0.625rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ── Logo ── */
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* White card behind JPG logo so it reads cleanly on dark navbar */
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  transition: height var(--t-base);
}
.navbar.scrolled .nav-logo-img {
  height: 42px;
  background: transparent;
  padding: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width var(--t-base);
}
.nav-link:hover        { color: var(--gold-300); }
.nav-link:hover::after { width: 100%; }
.nav-link.active       { color: var(--gold-300); }
.nav-link.active::after{ width: 100%; }

.navbar.scrolled .nav-link {
  color: var(--navy-800);
}
.navbar.scrolled .nav-link:hover { color: var(--gold-600); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  display: none;
}
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* ================================================================
   HAMBURGER
   ================================================================ */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}
.navbar.scrolled .hamburger-line { background: var(--navy-900); }

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   MOBILE MENU
   ================================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(6,11,38,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-list {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mobile-nav-list li { margin-bottom: 1.75rem; }
.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--t-fast);
  letter-spacing: 0.01em;
}
.mobile-nav-list a:hover { color: var(--gold-300); }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.1); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--r-full); /* pill shape */
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-base);
  white-space: nowrap;
  min-height: 52px;
  min-width: 44px;
}
.btn svg { flex-shrink: 0; }

/* Primary — sky blue (Pathway style) */
.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 6px 20px rgba(14,165,233,0.35);
}
.btn-primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 8px 28px rgba(14,165,233,0.45);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost — white outline */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.80);
}

/* Phone circle button */
.btn-phone {
  width: 52px;
  height: 52px;
  min-width: 52px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
  color: var(--white);
}
.btn-phone:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.70);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
  border-radius: var(--r-full);
}
.btn-outline-navy:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-500);
  border-radius: var(--r-full);
}
.btn-outline-blue:hover {
  background: var(--blue-500);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
  border-radius: var(--r-full);
}
.btn-white:hover {
  background: var(--blue-100);
  border-color: var(--blue-100);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0B1A33;
}

/* Real photo background */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.35;
}

/* Gradient overlay — dark left, transparent right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,26,51,0.97) 0%,
    rgba(11,26,51,0.90) 40%,
    rgba(11,26,51,0.55) 70%,
    rgba(11,26,51,0.20) 100%
  );
}

/* Legacy glow classes — kept for other pages */
.hero-grid-pattern { display: none; }
.hero-glow-1 { display: none; }
.hero-glow-2 { display: none; }

.hero-content {
  position: relative;
  z-index: var(--z-up);
  max-width: 760px;
  padding: 10rem 0 5rem; /* extra top to clear announcement bar + navbar */
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(196,149,10,0.14);
  border: 1px solid rgba(196,149,10,0.28);
  border-radius: var(--r-full);
  padding: 0.4375rem 1.125rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulseGold 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseGold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}
.hero-eyebrow-text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.625rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hero-stat {
  padding-right: 2.5rem;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(196,149,10,0.22);
}
.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-lbl {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(4,10,30,0.85) 0%, transparent 100%);
  padding: 1.5rem 0;
}
.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.03em;
}
.hero-trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-500);
  flex-shrink: 0;
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.875rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5px;
  background: var(--gold-500);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title-light { color: var(--white); }

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 580px;
}
.section-lead-light { color: rgba(255,255,255,0.72); }

.gold-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  margin: 1rem 0;
  border-radius: 1px;
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  transition: all var(--t-slow);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--t-base);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(196,149,10,0.14), rgba(196,149,10,0.06));
}
.service-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy-800);
  transition: stroke var(--t-base);
}
.service-card:hover .service-icon-wrap svg { stroke: var(--gold-600); }

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card-list {
  margin-bottom: 1.75rem;
}
.service-card-list li {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.3rem 0;
}
.service-card-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-800);
  transition: gap var(--t-base), color var(--t-fast);
}
.service-link:hover { gap: 0.75rem; color: var(--gold-600); }

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-section {
  background: linear-gradient(150deg, #040A1E 0%, #0D1E45 100%);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .stats-grid { grid-template-columns: 1fr; } }

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(196,149,10,0.15);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 1024px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(196,149,10,0.15); }
}
@media (max-width: 480px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(196,149,10,0.15); }
  .stat-item:last-child { border-bottom: none; }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.stat-lbl {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  margin-top: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ================================================================
   FEATURE / WHY US CARDS
   ================================================================ */
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.625rem;
  border-radius: var(--r-md);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}
.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,149,10,0.18);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--t-fast);
}
.feature-item:hover .feature-icon { border-color: var(--gold-400); }
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy-800);
}

.feature-h {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}
.feature-p { font-size: 0.9rem; line-height: 1.65; }

/* ================================================================
   PROCEDURE TABS
   ================================================================ */
.proc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.proc-tab {
  padding: 0.5625rem 1.375rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-mid);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.proc-tab:hover,
.proc-tab.active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.proc-grid { display: none; }
.proc-grid.active { display: grid; }

.proc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: all var(--t-base);
}
.proc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(196,149,10,0.18);
}
.proc-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.proc-card-desc { font-size: 0.9rem; line-height: 1.65; }
.proc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}
.proc-badge-surgery  { background: rgba(13,30,69,0.08); color: var(--navy-800); }
.proc-badge-regen    { background: rgba(196,149,10,0.12); color: var(--gold-700); }
.proc-badge-minimal  { background: rgba(5,150,105,0.10); color: #047857; }

/* ================================================================
   JOURNEY STEPS
   ================================================================ */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 1024px) { .journey-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .journey-grid { grid-template-columns: 1fr; } }

.journey-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  pointer-events: none;
}
@media (max-width: 1024px) { .journey-grid::before { display: none; } }

.journey-step {
  text-align: center;
  padding: 0 1rem;
}
.journey-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(196,149,10,0.30);
}
.journey-h {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
}
.journey-p { font-size: 0.9rem; line-height: 1.65; color: var(--text-body); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,149,10,0.18);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-500);
  stroke: var(--gold-500);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
}
.testimonial-meta { font-size: 0.8125rem; color: var(--text-muted); }

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-thumb {
  height: 216px;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }

.blog-card-thumb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}
.blog-card-thumb-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: rgba(196,149,10,0.5);
}
.blog-card-thumb-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.blog-card-body {
  padding: 1.625rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color var(--t-fast);
}
.blog-card:hover .blog-card-title { color: var(--navy-600); }

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.375rem 0;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--t-fast);
  min-height: 44px;
}
.faq-question:hover { color: var(--navy-600); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-muted);
  transition: transform var(--t-base);
}
.faq-item.open .faq-icon {
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.faq-item.open .faq-icon svg {
  stroke: var(--gold-400);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding-bottom: 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.form-group { margin-bottom: 1.375rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(13,30,69,0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.75rem;
}

/* ================================================================
   CONTACT INFO ITEMS
   ================================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.contact-info-item:hover { background: rgba(255,255,255,0.08); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,149,10,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-400);
}
.contact-info-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}
.contact-info-value a {
  color: var(--white);
  transition: color var(--t-fast);
}
.contact-info-value a:hover { color: var(--gold-300); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-950);
  padding: 5.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.footer-social-link:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.70);
  transition: stroke var(--t-fast);
}
.footer-social-link:hover svg { stroke: var(--white); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.50);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold-400); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
}
.footer-contact-row svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.footer-contact-row a {
  color: rgba(255,255,255,0.50);
  transition: color var(--t-fast);
}
.footer-contact-row a:hover { color: var(--gold-400); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.36); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.36);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--gold-400); }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.reveal-fade.is-visible { opacity: 1; }

.stagger-1 { transition-delay: 0.10s; }
.stagger-2 { transition-delay: 0.20s; }
.stagger-3 { transition-delay: 0.30s; }
.stagger-4 { transition-delay: 0.40s; }
.stagger-5 { transition-delay: 0.50s; }

/* ================================================================
   SCROLL-TO-TOP
   ================================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--navy-900);
  border: 1px solid rgba(196,149,10,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
  z-index: var(--z-up);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top-btn:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  transform: translateY(-2px);
}
.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

/* ================================================================
   BLOG ARTICLE PAGE
   ================================================================ */

/* On white-navbar pages (blog/articles), logo shows without white card */
.navbar.scrolled .nav-logo-img {
  height: 42px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  z-index: calc(var(--z-nav) + 10);
  transition: width 0.15s linear;
  pointer-events: none;
}

.article-header {
  padding: 9rem 0 4rem;
  background: linear-gradient(150deg, #040A1E 0%, #0D1E45 100%);
  position: relative;
  overflow: hidden;
}
.article-header-content { position: relative; z-index: 2; max-width: 760px; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  color: var(--text-dark);
  margin: 3rem 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--gold-300);
  scroll-margin-top: 6rem;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  color: var(--text-dark);
  margin: 2.25rem 0 0.75rem;
  scroll-margin-top: 6rem;
}
.article-body p { margin-bottom: 1.625rem; line-height: 1.82; }
.article-body ul,
.article-body ol {
  padding-left: 1.625rem;
  margin-bottom: 1.625rem;
}
.article-body li { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 0.5rem; color: var(--text-body); }
.article-body a { color: var(--navy-700); text-decoration: underline; transition: color var(--t-fast); }
.article-body a:hover { color: var(--gold-600); }

.article-body blockquote {
  border-left: 3px solid var(--gold-500);
  background: var(--bg-warm);
  padding: 1.25rem 1.625rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 2rem 0;
}
.article-body blockquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

.toc {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 2rem 0 2.5rem;
}
.toc-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toc-heading::before {
  content: '';
  width: 1rem;
  height: 1.5px;
  background: var(--gold-500);
}
.toc ol { counter-reset: toc; padding: 0; }
.toc ol li {
  counter-increment: toc;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  margin: 0;
}
.toc ol li:last-child { border-bottom: none; }
.toc ol li::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-600);
  flex-shrink: 0;
  font-family: var(--font-body);
}
.toc ol li a { color: var(--text-dark); text-decoration: none; transition: color var(--t-fast); }
.toc ol li a:hover { color: var(--gold-600); text-decoration: none; }

.author-bio-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.875rem;
  margin: 3rem 0;
  align-items: flex-start;
}
@media (max-width: 640px) { .author-bio-card { flex-direction: column; } }
.author-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.author-credentials {
  font-size: 0.8125rem;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.author-bio-text { font-size: 0.9rem; line-height: 1.7; }

.article-cta-banner {
  background: linear-gradient(135deg, #040A1E 0%, #0D1E45 100%);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.article-cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.article-cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   UTILITIES
   ================================================================ */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.gold-color   { color: var(--gold-500); }
.navy-color   { color: var(--navy-900); }
.white-color  { color: var(--white); }
.muted-color  { color: var(--text-muted); }
.bg-warm-sec  { background: var(--bg-warm); }
.bg-navy-dark { background: linear-gradient(150deg, #040A1E 0%, #0D1E45 100%); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ================================================================
   PATHWAY-STYLE COMPONENTS (New Design)
   ================================================================ */

/* Blue accent text */
.text-blue-accent { color: var(--blue-400); }

/* Canadian badge */
.canadian-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* Hero feature chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2.25rem;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
}
.hero-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
  flex-shrink: 0;
}

/* Hero review badge */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-full);
  padding: 0.5rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 16px; height: 16px; fill: #FBBF24; }
.review-g {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--white);
  color: #4285F4;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trust logos strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.25rem;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.trust-logo {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-logo svg { width: 20px; height: 20px; }

/* Doctor cards */
.doctor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  cursor: default;
}
.doctor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.doctor-photo-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow);
}
.doctor-card:hover .doctor-photo-wrap img { transform: scale(1.04); }

.doctor-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}
.doctor-info {
  padding: 1.5rem;
}
.doctor-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.doctor-title {
  font-size: 0.875rem;
  color: var(--blue-600);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.doctor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.doctor-cred-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.2rem 0.625rem;
  color: var(--text-muted);
}

/* Journey step cards with image */
.journey-img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-warm);
}
.journey-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,26,51,0.75) 100%);
}
.journey-img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--white);
}
.journey-img-step {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-400);
  margin-bottom: 0.25rem;
}
.journey-img-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}

/* Conditions accordion */
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 640px) { .conditions-grid { grid-template-columns: 1fr; } }

.condition-item {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--t-fast);
  text-decoration: none;
}
.condition-item:nth-child(even) { border-right: none; }
.condition-item:nth-last-child(-n+2) { border-bottom: none; }
.condition-item:hover { background: var(--bg-warm); }

.condition-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9375rem;
}
.condition-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}
.condition-arrow {
  color: var(--blue-500);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Plan / about section */
.plan-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg-warm);
}
.plan-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plan-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.plan-badge-stars { display: flex; gap: 2px; }
.plan-badge-stars svg { width: 14px; height: 14px; fill: #FBBF24; }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0rem;
  color: var(--text-body);
  line-height: 1.6;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.check-icon svg { width: 13px; height: 13px; stroke: white; stroke-width: 3; }

/* Blog / surgeon videos */
.surgeon-video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--t-base);
  text-decoration: none;
  display: block;
}
.surgeon-video-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.surgeon-video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.surgeon-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--t-slow);
}
.surgeon-video-card:hover .surgeon-video-thumb img { transform: scale(1.05); }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base);
}
.surgeon-video-card:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
.play-btn svg { width: 20px; height: 20px; fill: var(--navy-900); margin-left: 3px; }

.surgeon-video-body { padding: 1.25rem; }
.surgeon-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}
.surgeon-video-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.surgeon-video-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.surgeon-avatar-sm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-warm);
}

/* CTA form section */
.cta-form-section {
  background: var(--navy-950);
  padding: 5rem 0;
}
.cta-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.cta-form-card .form-input,
.cta-form-card .form-select,
.cta-form-card .form-textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.cta-form-card .form-input::placeholder,
.cta-form-card .form-textarea::placeholder {
  color: rgba(255,255,255,0.40);
}
.cta-form-card .form-input:focus,
.cta-form-card .form-select:focus,
.cta-form-card .form-textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
}
.cta-form-card .form-select option { background: var(--navy-900); color: white; }
.cta-form-card .form-label { color: rgba(255,255,255,0.80); }

.cta-doctor-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--navy-800);
}
.cta-doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero-chips { gap: 0.375rem 1rem; }
  .conditions-grid { grid-template-columns: 1fr; }
  .condition-item { border-right: none; }
  .condition-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .condition-item:last-child { border-bottom: none; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .navbar, .announcement-bar, .mobile-menu, .hero-ctas,
  .scroll-top-btn, .footer, .hero-trust-bar { display: none !important; }
  body { color: #000; }
  .hero { min-height: auto; padding: 2rem 0; }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-fade { opacity: 1; transform: none; }
}
