@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --flexi-motion-bg: #0b1114;
  --flexi-motion-surface: #121a1f;
  --flexi-motion-surface-accent: #1a252c;
  --flexi-motion-ink: #f4f6f7;
  --flexi-motion-ink-muted: #8e9da6;
  --flexi-motion-primary: #10b981;
  --flexi-motion-primary-hover: #059669;
  --flexi-motion-glow: rgba(16, 185, 129, 0.25);
  --flexi-motion-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --flexi-motion-dark-gradient: linear-gradient(180deg, rgba(18,26,31,0) 0%, rgba(11,17,20,1) 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --flexi-radius: 16px;
  --flexi-radius-pill: 999px;
  --flexi-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  --flexi-shadow-hover: 0 20px 40px rgba(16, 185, 129, 0.15);
  --flexi-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--flexi-motion-bg);
  color: var(--flexi-motion-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--flexi-transition);
}

/* Base Wrapper for layout padding */
.flexi-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
.spine-top-bar {
  background-color: var(--flexi-motion-surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.spine-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.spine-logo-zone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--flexi-motion-ink);
}

.spine-logo-zone svg {
  fill: var(--flexi-motion-primary);
  filter: drop-shadow(0 0 8px var(--flexi-motion-glow));
}

.motion-gate-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.motion-gate-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--flexi-motion-ink-muted);
  position: relative;
  padding: 8px 0;
}

.motion-gate-link:hover,
.motion-gate-link.is-active {
  color: var(--flexi-motion-ink);
}

.motion-gate-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--flexi-motion-primary);
  transition: var(--flexi-transition);
}

.motion-gate-link:hover::after,
.motion-gate-link.is-active::after {
  width: 100%;
}

/* Mobile Hamburger Menu (CSS-only) */
.spine-drawer-input {
  display: none;
}

.spine-drawer-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
  padding: 8px;
}

.spine-drawer-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--flexi-motion-ink);
  border-radius: 2px;
  transition: var(--flexi-transition);
}

/* Hero Section (Preset A) */
.cartilage-hero-strip {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cartilage-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(18, 26, 31, 0.4) 0%, rgba(11, 17, 20, 0.95) 100%);
  z-index: 1;
}

.cartilage-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.knee-main-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6dvw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.knee-main-title span {
  background: var(--flexi-motion-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.knee-subtitle-text {
  font-size: clamp(1.1rem, 2dvw, 1.4rem);
  color: var(--flexi-motion-ink-muted);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cartilage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--flexi-motion-gradient);
  color: var(--flexi-motion-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--flexi-radius-pill);
  box-shadow: 0 8px 24px var(--flexi-motion-glow);
  transition: var(--flexi-transition);
  border: none;
  cursor: pointer;
}

.cartilage-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
  color: var(--flexi-motion-bg);
}

.cartilage-button-secondary {
  background: transparent;
  color: var(--flexi-motion-ink);
  border: 2px solid var(--flexi-motion-primary);
  box-shadow: none;
}

.cartilage-button-secondary:hover {
  background-color: var(--flexi-motion-primary);
  color: var(--flexi-motion-bg);
}

/* Floating Stat-Bar (Preset A) */
.cartilage-stat-rack {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  margin-bottom: 60px;
}

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

.cartilage-stat-item {
  background: var(--flexi-motion-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: var(--flexi-radius);
  box-shadow: var(--flexi-shadow);
  text-align: center;
  transition: var(--flexi-transition);
}

.cartilage-stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.2);
}

.cartilage-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--flexi-motion-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.cartilage-stat-label {
  font-size: 0.95rem;
  color: var(--flexi-motion-ink-muted);
  font-weight: 500;
}

/* Content zigzag section (Preset A) */
.flexi-double-zigzag {
  padding: 10dvh 0;
}

.flexi-zig-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 10dvh;
}

.flexi-zig-row:last-child {
  margin-bottom: 0;
}

.flexi-zig-row.is-reversed {
  flex-direction: row-reverse;
}

.flexi-zig-media {
  flex: 1;
  height: 420px;
  border-radius: var(--flexi-radius);
  overflow: hidden;
  box-shadow: var(--flexi-shadow);
}

.flexi-zig-row:first-child .flexi-zig-media {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.flexi-zig-row.is-reversed .flexi-zig-media {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.flexi-zig-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--flexi-transition);
}

.flexi-zig-media:hover img {
  transform: scale(1.05);
}

.flexi-zig-text {
  flex: 1.2;
}

.flexi-zig-subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--flexi-motion-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.flexi-zig-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4dvw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.flexi-zig-description {
  color: var(--flexi-motion-ink-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.flexi-zig-bullets {
  list-style: none;
}

.flexi-zig-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.flexi-zig-bullet-item svg {
  fill: var(--flexi-motion-primary);
  flex-shrink: 0;
}

/* Features section (Preset A: 2-row grid with left border) */
.tendon-grid-rack {
  padding: 10dvh 0;
  background-color: var(--flexi-motion-surface);
}

.tendon-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.tendon-section-subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--flexi-motion-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.tendon-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4dvw, 2.8rem);
  text-transform: uppercase;
}

.tendon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tendon-grid-item {
  background-color: var(--flexi-motion-surface-accent);
  border-left: 4px solid var(--flexi-motion-primary);
  padding: 40px 32px;
  border-radius: 0 var(--flexi-radius) var(--flexi-radius) 0;
  transition: var(--flexi-transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tendon-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--flexi-shadow-hover);
}

.tendon-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--flexi-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.tendon-icon-wrapper svg {
  fill: var(--flexi-motion-primary);
}

.tendon-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tendon-card-desc {
  color: var(--flexi-motion-ink-muted);
  font-size: 0.95rem;
}

/* "How it works" timeline (Preset A: vertical timeline) */
.stride-timeline-track {
  padding: 10dvh 0;
}

.stride-timeline-core {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0 auto;
  padding: 20px 0;
}

.stride-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(16, 185, 129, 0.3);
  transform: translateX(-50%);
}

.stride-timeline-node {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.stride-timeline-node:last-child {
  margin-bottom: 0;
}

.stride-timeline-node:nth-child(even) {
  flex-direction: row-reverse;
}

.stride-timeline-space {
  width: 45%;
}

.stride-timeline-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--flexi-motion-surface);
  border: 3px solid var(--flexi-motion-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--flexi-motion-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 15px var(--flexi-motion-glow);
}

.stride-timeline-block {
  width: 45%;
  background: var(--flexi-motion-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: var(--flexi-radius);
  box-shadow: var(--flexi-shadow);
}

.stride-timeline-node-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--flexi-motion-ink);
}

.stride-timeline-node-desc {
  color: var(--flexi-motion-ink-muted);
  font-size: 0.95rem;
}

/* CTA Strip section (Preset A) */
.joint-action-banner {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
}

.joint-action-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 17, 20, 0.85);
  z-index: 1;
}

.joint-action-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.joint-action-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5dvw, 3rem);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.joint-action-desc {
  font-size: 1.15rem;
  color: var(--flexi-motion-ink-muted);
  margin-bottom: 40px;
}

/* Footer Styles */
.joint-footer-base {
  background-color: #070b0d;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.joint-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.joint-footer-brand {
  max-width: 320px;
}

.joint-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.joint-footer-brand-logo svg {
  fill: var(--flexi-motion-primary);
}

.joint-footer-brand-desc {
  color: var(--flexi-motion-ink-muted);
  font-size: 0.95rem;
}

.joint-footer-nav {
  display: flex;
  gap: 60px;
}

.joint-footer-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--flexi-motion-ink);
}

.joint-footer-links-list {
  list-style: none;
}

.joint-footer-links-list li {
  margin-bottom: 12px;
}

.joint-footer-link {
  color: var(--flexi-motion-ink-muted);
  font-size: 0.9rem;
}

.joint-footer-link:hover {
  color: var(--flexi-motion-primary);
}

.joint-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  text-align: center;
}

.joint-footer-disclaimer {
  color: var(--flexi-motion-ink-muted);
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.5;
}

.joint-footer-copyright {
  color: var(--flexi-motion-ink-muted);
  font-size: 0.85rem;
}

/* Cookie Banner */
.joint-cookie-tray {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 400px;
  background-color: var(--flexi-motion-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--flexi-radius);
  padding: 24px;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.joint-cookie-tray.is-visible {
  transform: translateY(0);
}

.joint-cookie-text {
  font-size: 0.9rem;
  color: var(--flexi-motion-ink-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.joint-cookie-actions {
  display: flex;
  gap: 12px;
}

.joint-cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--flexi-radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--flexi-transition);
}

.joint-cookie-btn-primary {
  background: var(--flexi-motion-gradient);
  color: var(--flexi-motion-bg);
}

.joint-cookie-btn-primary:hover {
  filter: brightness(1.1);
}

.joint-cookie-btn-secondary {
  background-color: transparent;
  color: var(--flexi-motion-ink);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.joint-cookie-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Expert Page Specifics (Preset A) */
.expert-minimal-hero {
  position: relative;
  padding: 120px 0 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expert-minimal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(18, 26, 31, 0.7) 0%, rgba(11, 17, 20, 0.98) 100%);
  z-index: 1;
}

.expert-minimal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.expert-profile-section {
  padding: 100px 0;
}

.expert-profile-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.expert-profile-media {
  flex: 1;
  height: 550px;
  border-radius: var(--flexi-radius);
  overflow: hidden;
  box-shadow: var(--flexi-shadow);
}

.expert-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-profile-details {
  flex: 1.2;
}

.expert-profile-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--flexi-motion-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.expert-profile-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.expert-profile-bio {
  color: var(--flexi-motion-ink-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Booking Page Specifics (Preset A) */
.booking-form-section {
  padding: 100px 0;
}

.booking-form-box {
  background: var(--flexi-motion-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--flexi-radius);
  padding: 48px;
  max-width: 650px;
  margin: -80px auto 60px auto;
  position: relative;
  z-index: 100;
  box-shadow: var(--flexi-shadow);
}

.booking-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.booking-form-subtitle {
  color: var(--flexi-motion-ink-muted);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 36px;
}

.booking-form-group {
  margin-bottom: 24px;
}

.booking-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--flexi-motion-ink);
}

.booking-form-control {
  width: 100%;
  background-color: var(--flexi-motion-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  color: var(--flexi-motion-ink);
  font-size: 1rem;
  transition: var(--flexi-transition);
}

.booking-form-control:focus {
  outline: none;
  border-color: var(--flexi-motion-primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

.booking-form-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.booking-form-checkbox {
  margin-top: 4px;
  accent-color: var(--flexi-motion-primary);
}

.booking-form-checkbox-text {
  font-size: 0.85rem;
  color: var(--flexi-motion-ink-muted);
  line-height: 1.4;
}

.booking-form-checkbox-text a {
  color: var(--flexi-motion-primary);
}

.booking-form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 12px;
}

.booking-direct-email {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.booking-direct-email a {
  color: var(--flexi-motion-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* FAQ Accordion Section (Preset A: CSS only) */
.booking-faq-rack {
  padding: 60px 0 100px 0;
  max-width: 800px;
  margin: 0 auto;
}

.booking-faq-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.booking-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-faq-tab {
  background: var(--flexi-motion-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--flexi-radius);
  overflow: hidden;
  box-shadow: var(--flexi-shadow);
}

.booking-faq-input {
  display: none;
}

.booking-faq-trigger {
  padding: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.booking-faq-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--flexi-motion-primary);
  transition: var(--flexi-transition);
}

.booking-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
  color: var(--flexi-motion-ink-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

/* By default, in Preset A all accordion tabs are open on load, we can style it accordingly or use CSS tricks */
.booking-faq-input:checked ~ .booking-faq-content {
  max-height: 250px;
  padding: 0 24px 24px 24px;
  border-top-color: rgba(255, 255, 255, 0.05);
}

.booking-faq-input:checked ~ .booking-faq-trigger::after {
  transform: rotate(45deg);
}

/* Stat Grid for Booking Page */
.booking-cards-rack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.booking-info-item {
  background: var(--flexi-motion-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--flexi-radius);
  padding: 32px;
  box-shadow: var(--flexi-shadow);
}

.booking-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.booking-info-icon svg {
  fill: var(--flexi-motion-primary);
}

.booking-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.booking-info-desc {
  color: var(--flexi-motion-ink-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.booking-info-points {
  list-style: none;
}

.booking-info-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--flexi-motion-ink);
}

.booking-info-point-dot {
  width: 8px;
  height: 8px;
  background-color: var(--flexi-motion-primary);
  border-radius: 50%;
}

/* Thank you page */
.thank-you-layout {
  padding: 100px 0;
  text-align: center;
}

.thank-you-media {
  max-width: 600px;
  height: 350px;
  border-radius: var(--flexi-radius);
  overflow: hidden;
  margin: 40px auto;
  box-shadow: var(--flexi-shadow);
}

.thank-you-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Static Content Pages */
.legal-page-layout {
  padding: 100px 0;
}

.legal-content-box {
  background: var(--flexi-motion-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--flexi-radius);
  padding: 60px;
  box-shadow: var(--flexi-shadow);
}

.legal-doc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-doc-date {
  color: var(--flexi-motion-primary);
  font-weight: 600;
  margin-bottom: 40px;
}

.legal-text-block {
  margin-bottom: 30px;
}

.legal-text-subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--flexi-motion-ink);
}

.legal-text-block p {
  color: var(--flexi-motion-ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Scroll Progress indicator (Only CSS) */
.motion-scroller-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--flexi-motion-primary);
  z-index: 1010;
  width: 0;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

@keyframes progress-grow {
  to { width: 100%; }
}

/* Viewport Scroll Animation fallback alternative */
.reveal-view {
  animation: motion-fade-in 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes motion-fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Rules */
@media (max-width: 991px) {
  .spine-drawer-btn {
    display: flex;
  }
  
  .motion-gate-nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background-color: var(--flexi-motion-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--flexi-transition);
  }

  .spine-drawer-input:checked ~ .motion-gate-nav {
    right: 0;
  }

  .spine-drawer-input:checked ~ .spine-drawer-btn span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .spine-drawer-input:checked ~ .spine-drawer-btn span:nth-child(2) {
    opacity: 0;
  }

  .spine-drawer-input:checked ~ .spine-drawer-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .cartilage-stat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -40px;
  }

  .flexi-zig-row, .flexi-zig-row.is-reversed {
    flex-direction: column;
    gap: 40px;
  }

  .flexi-zig-media {
    width: 100%;
    clip-path: none !important;
  }

  .tendon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stride-timeline-line {
    left: 24px;
  }

  .stride-timeline-node, .stride-timeline-node:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }

  .stride-timeline-space {
    display: none;
  }

  .stride-timeline-block {
    width: 100%;
  }

  .stride-timeline-circle {
    left: 24px;
    transform: translateX(-50%);
  }

  .expert-profile-flex {
    flex-direction: column;
    gap: 40px;
  }

  .expert-profile-media {
    width: 100%;
    height: 400px;
  }

  .booking-cards-rack {
    grid-template-columns: 1fr;
  }

  .legal-content-box {
    padding: 30px 20px;
  }
}