/* ============================================================
   HOUSTON FOOT & ANKLE MD — styles.css
   Travis W. Hanson, MD
   Palette: White + Cobalt Blue
   ============================================================ */

/* --- CSS VARIABLES ----------------------------------------- */
:root {
  --bg-primary:     #ffffff;
  --bg-secondary:   #f4f6f9;
  --bg-card:        #f9fafb;
  --bg-dark:        #0d1117;
  --bg-dark-2:      #151c27;
  --accent:         #1847b5;
  --accent-hover:   #1238a0;
  --accent-dim:     rgba(24, 71, 181, 0.1);
  --text-primary:   #0d1117;
  --text-secondary: #374151;
  --text-muted:     #9aa3b0;
  --text-light:     rgba(255,255,255,0.85);
  --text-light-dim: rgba(255,255,255,0.82);
  --border:         #e2e6ed;
  --border-dark:    rgba(255,255,255,0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-sm: 60px;
  --radius: 2px;
  --transition: 0.25s ease;
  --container-pad: 2rem;
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.section-eyebrow-light { color: rgba(255,255,255,0.4); }

/* --- LAYOUT ------------------------------------------------ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(24,71,181,0.3);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(24,71,181,0.25);
}
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  border: 1px solid var(--bg-dark);
}
.btn-dark:hover {
  background: var(--bg-dark-2);
  transform: translateY(-1px);
}

/* --- NAVIGATION -------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.0);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13,17,23,0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}
/* On light pages (non-hero), always show dark nav */
.site-header.solid {
  background: var(--bg-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: hidden;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.logo-title {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.nav-links > li > a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 0.35rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover { color: #fff; }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 0.7rem !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 4px 16px rgba(24,71,181,0.4);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), background var(--transition);
}
.dropdown-menu li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all var(--transition);
}

/* --- HERO -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,17,23,0.88) 0%,
    rgba(13,17,23,0.6) 50%,
    rgba(13,17,23,0.4) 100%
  );
  z-index: 2;
}
.hero-static-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(24,71,181,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #090d14 0%, #0d1117 100%);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 76px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}
.hero-headline {
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 700px;
  font-weight: 400;
}
.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.35;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: #fff;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 0.35; }
  50% { width: 60px; opacity: 0.7; }
}

/* --- CREDENTIAL BAR --------------------------------------- */
.credential-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  overflow-x: auto;
}
.credential-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 800px;
}
.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.credential-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.credential-detail {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.credential-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* --- PHILOSOPHY STRIP ------------------------------------- */
.philosophy-strip {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.philosophy-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.philosophy-quote cite {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* --- CONDITIONS SECTION ----------------------------------- */
.conditions-section {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-sub {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-secondary);
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.condition-card {
  background: var(--bg-primary);
  display: block;
  transition: background var(--transition), box-shadow var(--transition);
}
.condition-card:hover {
  background: var(--accent-dim);
}
.condition-card:hover .condition-arrow {
  transform: translateX(4px);
  color: var(--accent);
}
.condition-card-inner {
  padding: 2.5rem 2rem;
  position: relative;
}
.condition-number {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.6;
}
.condition-card h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}
.condition-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.condition-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
  display: inline-block;
}
.conditions-cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- ABOUT STRIP ----------------------------------------- */
.about-strip {
  background: var(--bg-dark);
}
.about-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-strip-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.about-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.image-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #151c27 0%, #1e2d45 100%);
  position: absolute;
  inset: 0;
}
.about-strip-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.about-strip-content h2 { color: #fff; }
.about-strip-content p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

/* --- MIS STRIP ------------------------------------------- */
.mis-strip {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.mis-strip::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(24,71,181,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.mis-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mis-content h2 { color: var(--text-primary); margin-bottom: 1.25rem; }
.mis-content p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; }
.mis-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.mis-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.mis-item:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 2px 12px rgba(24,71,181,0.1);
}
.mis-check {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* --- SECOND OPINION STRIP -------------------------------- */
.second-opinion-strip {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}
.second-opinion-inner {
  max-width: 700px;
}
.second-opinion-content .section-eyebrow { color: var(--accent); }
.second-opinion-content h2 { color: #fff; margin-bottom: 1.25rem; }
.second-opinion-content p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.95rem; }

/* --- FOOTER ---------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer-specialty {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.35rem;
}
.footer-affiliation {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.25rem;
  display: block;
}
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}
.footer-contact a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-hours {
  margin-top: 0.5rem;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.25) !important;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }
.footer-cta p:first-of-type {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-cta .btn { margin-bottom: 0.75rem; width: 100%; text-align: center; display: block; }
.footer-phone-btn { font-size: 0.78rem !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--accent); }
.footer-legal {
  font-size: 0.68rem !important;
  color: rgba(255,255,255,0.2) !important;
  max-width: 640px;
  line-height: 1.6;
}

/* --- INNER PAGE HERO (reusable) --------------------------- */
.page-hero {
  padding: 140px 2rem 80px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(24,71,181,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero .section-eyebrow { color: var(--accent); }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  line-height: 1.75;
}

/* --- CONTENT SECTIONS (inner pages) ---------------------- */
.content-section {
  padding: var(--section-pad) 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.content-section h2 { color: var(--text-primary); margin-bottom: 1.25rem; }
.content-section h3 { color: var(--text-primary); font-size: 1.3rem; margin-bottom: 0.75rem; margin-top: 2.5rem; }
.content-section p { margin-bottom: 1.1rem; color: var(--text-secondary); font-size: 0.97rem; }
.content-section ul { margin: 1rem 0 1.5rem 1rem; list-style: disc; }
.content-section ul li { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.7; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

/* --- CTA STRIP ------------------------------------------- */
.cta-strip {
  padding: var(--section-pad) 2rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-strip .btn { margin: 0 0.5rem; }

/* --- RESPONSIVE ------------------------------------------ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .mis-strip-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(13,17,23,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    font-size: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    display: block;
  }
  .nav-toggle { display: flex; }
  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    display: block;
    padding: 0 0 0 1rem;
  }
  .dropdown-menu li a {
    padding: 0.4rem 0;
    border-bottom: none;
    font-size: 0.78rem;
  }
  .hero-content { padding-top: 120px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-image { min-height: 320px; }
  .about-strip-content { padding: 2.5rem 2rem; }
  .mis-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .credential-bar-inner { justify-content: flex-start; gap: 2rem; }
}

/* --- RECOVERY TIMELINE SECTION --------------------------- */
.recovery-section {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.recovery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.recovery-section .section-eyebrow { color: var(--accent); }
.recovery-section h2 { color: #fff; margin-bottom: 1rem; }
.recovery-section > .recovery-inner > p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}
.recovery-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.recovery-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.recovery-table td {
  padding: 1.1rem 1.25rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}
.recovery-table tr:last-child td { border-bottom: none; }
.recovery-table tr:hover td {
  background: rgba(255,255,255,0.03);
  color: #fff;
}
.recovery-table td:first-child {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}
.recovery-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* --- FLOATING MOBILE CTA --------------------------------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.mobile-cta-call {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.mobile-cta-appt {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
}
