/* PRP Relief — prprelief.com
   Advanced Medical Centers Jacksonville
   PRP therapy for knee & joint pain */

:root {
  /* AdvMed blues — sampled from logo */
  --navy-900: #14224d;
  --navy-800: #1a2a5e;
  --navy-700: #233a78;
  --royal:    #1860a8;
  --royal-dk: #134d87;
  --bright:   #2b7fc4;
  --bright-lt:#5ba3dd;
  --sky-50:   #e8f1f9;
  --sky-25:   #f2f7fc;
  /* Grays */
  --ink:      #1c2333;
  --ink-soft: #4d5670;
  --ink-mute: #8995a8;
  --slate:    #5a6478;
  --rule:     #e2e8f0;
  --rule-2:   #d3dce8;
  /* Surfaces */
  --cloud:    #f4f7fb;
  --cloud-2:  #e9eff7;
  --paper:    #ffffff;
  /* Accent for "natural/healing" — subtle warm to avoid all-cold */
  --heal:     #3a9b8a;
  --heal-bg:  #e6f3f0;
  --serif:    "Newsreader", Georgia, serif;
  --sans:     "Inter", -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
ul { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.preview-banner {
  background: var(--navy-900); color: #fff;
  text-align: center; padding: 14px 20px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
}
.preview-banner strong { color: var(--bright-lt); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); position: relative; }

/* Image placeholders */
/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600;
  font-size: 15px; line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s;
  border: 0; cursor: pointer;
}
.btn-primary { background: var(--royal); color: #fff; box-shadow: 0 4px 14px rgba(24,96,168,0.28); }
.btn-primary:hover { background: var(--royal-dk); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(24,96,168,0.4); }
.btn-bright { background: var(--bright); color: #fff; box-shadow: 0 6px 18px rgba(43,127,196,0.36); }
.btn-bright:hover { background: var(--royal); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(43,127,196,0.46); }
.btn-light { background: #fff; color: var(--navy-900); box-shadow: 0 6px 18px rgba(0,0,0,0.14); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.2); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* HEADER */
.site-header {
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand-logo { height: 46px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a:not(.btn) { font-size: 14.5px; font-weight: 500; color: var(--ink); position: relative; transition: color 0.2s; }
.site-nav a:not(.btn):hover { color: var(--royal); }
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px; background: var(--bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }

/* EYEBROWS */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--royal-dk);
  background: var(--sky-50);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid var(--cloud-2);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bright); }
.eyebrow-heal { background: var(--heal-bg); color: #2a7568; border-color: #d0e8e2; }
.eyebrow-heal::before { background: var(--heal); }
.eyebrow-light {
  background: rgba(91,163,221,0.18);
  color: var(--bright-lt);
  border-color: rgba(91,163,221,0.3);
}
.eyebrow-light::before { background: var(--bright-lt); }

/* HERO */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0 clamp(70px, 8vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 78% 25%, rgba(43,127,196,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(26,42,94,0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--cloud) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  position: relative;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0 0 22px;
}
.hero-title .hl { position: relative; display: inline-block; white-space: nowrap; color: var(--royal); }
.hero-title .hl svg {
  position: absolute; left: -4px; right: -4px; bottom: -4px;
  width: calc(100% + 8px); height: 14px; z-index: -1; color: var(--bright-lt);
}
.hero-lede {
  font-size: clamp(16px, 1.5vw, 18.5px);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 54ch;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-trust {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
}
.hero-trust li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); }
.hero-trust strong { color: var(--navy-900); font-weight: 600; }
.trust-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sky-50);
  color: var(--royal);
}
.trust-icon svg { width: 13px; height: 13px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-soft); font-weight: 500;
}
.hero-guarantee svg { width: 16px; height: 16px; color: var(--heal); }

.hero-visual { position: relative; }
.hero-visual-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 60px rgba(20,34,77,0.18);
  z-index: 1;
}
.hero-visual-main .hero-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--navy-900);
  color: #fff;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(20,34,77,0.3);
  z-index: 3;
  max-width: 220px;
}
.hero-badge-top {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 4px;
}
.hero-badge-num {
  font-family: var(--serif);
  font-weight: 500; font-size: 34px; line-height: 1;
  color: var(--bright-lt);
  font-variation-settings: "opsz" 72;
}
.hero-badge-unit { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-badge-label {
  font-size: 12px; color: rgba(255,255,255,0.78); line-height: 1.4;
}
.hero-guarantee-tag {
  position: absolute;
  top: 18px; right: -12px;
  background: var(--heal);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(58,155,138,0.4);
  z-index: 3;
  display: flex; align-items: center; gap: 7px;
}
.hero-guarantee-tag svg { width: 15px; height: 15px; }

/* SECTION TITLES */
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 20px;
}
.section-title em { font-style: italic; color: var(--royal); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; position: relative; z-index: 1; }
.section-lede { font-size: 17px; color: var(--ink-soft); line-height: 1.7; margin: 0; }

/* PAIN */
.pain {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.pain::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(43,127,196,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pain-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.pain-image-wrap { position: relative; aspect-ratio: 3/4; max-height: 600px; }
.pain-image-wrap::before {
  content: ""; position: absolute;
  top: 22px; left: -22px; right: 22px; bottom: -22px;
  background: linear-gradient(135deg, var(--sky-50) 0%, var(--cloud-2) 100%);
  border-radius: 22px; z-index: 0;
}
.pain-image-wrap .pain-lede { font-size: 17px; color: var(--ink-soft); margin: 0 0 20px; line-height: 1.7; }
.pain-lede strong { color: var(--ink); font-weight: 600; }
.pain-list { display: grid; gap: 12px; margin: 0 0 24px; }
.pain-list li { position: relative; padding-left: 34px; font-size: 16px; color: var(--ink); line-height: 1.55; }
.pain-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sky-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231860a8' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.pain-emphasis {
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 500; font-style: italic;
  color: var(--navy-900); line-height: 1.45;
  font-variation-settings: "opsz" 72;
  border-left: 3px solid var(--royal);
  padding: 4px 0 4px 20px; margin: 24px 0 0;
}
.pain-emphasis em { color: var(--royal); font-style: italic; font-weight: 600; }

/* HOW IT WORKS */
.how {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--cloud);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,42,94,0.04) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.how-step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,34,77,0.10); }
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--bright) 100%);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600; font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(24,96,168,0.3);
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 600; font-size: 20px;
  color: var(--navy-900); margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.how-step p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin: 0; }
.how-note {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin: 48px auto 0;
  padding: 14px 24px;
  background: var(--heal-bg);
  color: #2a7568;
  font-size: 14px;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid #d0e8e2;
}
.how-note svg { width: 18px; height: 18px; }

/* CREDIBILITY / WHY IT WORKS — with consult image */
.cred {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cred-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.cred-image-wrap { position: relative; aspect-ratio: 4/3; }
.cred-image-wrap .cred-list { display: grid; gap: 18px; margin-top: 28px; }
.cred-list li { display: flex; align-items: flex-start; gap: 16px; }
.cred-list-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sky-50);
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
}
.cred-list-icon svg { width: 22px; height: 22px; }
.cred-list h4 {
  font-family: var(--serif);
  font-weight: 600; font-size: 17px;
  color: var(--navy-900); margin: 0 0 3px;
}
.cred-list p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* COMPARISON — old way vs PRP */
.compare {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--cloud);
  position: relative; overflow: hidden;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: stretch;
  position: relative; z-index: 1;
}
.compare-card { position: relative; border-radius: 22px; padding: 36px 32px; display: flex; flex-direction: column; }
.compare-card-bad { background: var(--paper); border: 1px solid var(--rule); }
.compare-card-good {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(20,34,77,0.28);
  position: relative; overflow: hidden;
}
.compare-card-good::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(43,127,196,0.28) 0%, transparent 65%);
}
.compare-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 18px; width: fit-content;
}
.compare-tag-bad { background: #fbeae8; color: #a04030; }
.compare-tag-good { background: rgba(91,163,221,0.2); color: var(--bright-lt); border: 1px solid rgba(91,163,221,0.32); }
.compare-card h3 {
  font-family: var(--serif); font-weight: 600; font-size: 23px;
  margin: 0 0 14px; letter-spacing: -0.01em; line-height: 1.25;
  position: relative; z-index: 1;
}
.compare-card-bad h3 { color: var(--navy-900); }
.compare-card-good h3 { color: #fff; }
.compare-desc { font-size: 15px; margin: 0 0 22px; line-height: 1.65; position: relative; z-index: 1; }
.compare-card-bad .compare-desc { color: var(--ink-soft); }
.compare-card-good .compare-desc { color: rgba(255,255,255,0.82); }
.compare-list { display: grid; gap: 12px; position: relative; z-index: 1; }
.compare-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.55; }
.compare-card-bad .compare-list li { color: var(--ink-soft); }
.compare-card-good .compare-list li { color: rgba(255,255,255,0.95); }
.compare-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.compare-icon-bad { background: #fbeae8; color: #a04030; }
.compare-icon-good { background: rgba(91,163,221,0.22); color: var(--bright-lt); }
.compare-icon svg { width: 12px; height: 12px; }
.compare-vs {
  align-self: center;
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 22px;
  color: var(--royal);
  background: var(--paper);
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--bright-lt);
  position: relative; z-index: 2;
  box-shadow: 0 4px 14px rgba(43,127,196,0.18);
}

/* OTHER JOINTS */
.joints {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.joints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.joint-card {
  background: var(--cloud);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.joint-card:hover { transform: translateY(-4px); border-color: var(--rule-2); box-shadow: 0 16px 40px rgba(20,34,77,0.08); }
.joint-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--sky-50);
  color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.joint-icon svg { width: 28px; height: 28px; }
.joint-card h3 { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--navy-900); margin: 0 0 6px; }
.joint-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* OFFER / GUARANTEE */
.offer {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, #16265c 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.offer::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(43,127,196,0.2) 0%, transparent 50%),
    radial-gradient(circle at 12% 88%, rgba(58,155,138,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.offer-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.offer-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(58,155,138,0.2);
  border: 1px solid rgba(58,155,138,0.4);
  color: #6fd0bd;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.offer-icon svg { width: 36px; height: 36px; }
.offer-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff; margin: 0 0 18px;
}
.offer-title em { font-style: italic; color: var(--bright-lt); }
.offer-lede {
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.65; margin: 0 auto 32px; max-width: 50ch;
}
.offer-features {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 16px; margin: 0 0 36px;
}
.offer-feature {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 20px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
}
.offer-feature svg { width: 18px; height: 18px; color: #6fd0bd; flex-shrink: 0; }
.offer-disclaimer {
  margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,0.55);
}

/* BOOKING */
.booking {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--cloud);
}
.booking-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.booking-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 32px 64px rgba(20,34,77,0.14);
  text-align: left;
  border: 1px solid var(--rule);
}
.booking-card h3 { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--navy-900); margin: 0 0 8px; }
.booking-card .sub { font-size: 15px; color: var(--ink-soft); margin: 0 0 22px; }
.ghl-embed-wrap { border-radius: 14px; overflow: hidden; background: var(--cloud); min-height: 600px; }
/* FAQ */
.faq {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; margin-top: 48px; }
.faq-item { background: var(--paper); border: 1px solid var(--rule); border-radius: 16px; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item:hover { border-color: var(--rule-2); }
.faq-item[open] { border-color: var(--sky-50); box-shadow: 0 4px 14px rgba(24,96,168,0.08); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--serif); font-weight: 600; font-size: 18px;
  color: var(--navy-900); letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; position: relative; width: 28px; height: 28px; border-radius: 50%; background: var(--sky-50); transition: transform 0.3s, background 0.2s; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; background: var(--royal); transform: translate(-50%, -50%); transition: transform 0.3s, background 0.2s; }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--royal); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body { padding: 0 26px 24px; }
.faq-body p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; }

/* FINAL CTA */
.final-cta {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--navy-900);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(43,127,196,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(58,155,138,0.08) 0%, transparent 50%);
}
.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta-title {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 72;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 20px;
}
.final-cta-title em { font-style: italic; color: var(--bright-lt); }
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.65; margin: 0 auto 36px; max-width: 50ch; }
.final-cta-foot { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

/* FOOTER */
.site-footer { padding: 44px 0 28px; background: var(--paper); border-top: 1px solid var(--rule); }
.footer-inner { display: grid; gap: 24px; }
.footer-brand-row { display: flex; align-items: center; gap: 16px; }
.footer-locations { display: flex; flex-wrap: wrap; gap: 32px; }
.footer-loc h4 { font-family: var(--serif); font-weight: 600; font-size: 15px; color: var(--navy-900); margin: 0 0 4px; }
.footer-loc p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.footer-loc a { color: var(--royal); font-weight: 600; }
.footer-legal { font-size: 12px; color: var(--ink-mute); line-height: 1.6; padding-top: 20px; border-top: 1px solid var(--rule); }

@media (max-width: 960px) {
  .hero-inner, .pain-inner, .cred-inner { grid-template-columns: 1fr; }
  .hero-visual, .pain-image-wrap { max-width: 460px; margin: 0 auto; }
  .how-steps, .joints-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { transform: rotate(90deg); margin: 0 auto; }
  .site-nav { display: none; }
}
@media (max-width: 600px) {
  .joints-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 28px 22px; }
  .hero-badge { left: 0; }
}

.pain-video {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(20,34,77,0.16);
  background: #000;
}
.how-diagram {
  max-width: 760px;
  margin: 0 auto 48px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(20,34,77,0.06);
}
.how-diagram img { width: 100%; height: auto; border-radius: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .pain-video { display: none; }
}
/* Qualifying form — map this page's palette onto the shared lead-form.css variables.
   The form ships identical everywhere; only this block differs per page. */
[data-leadform] {
  --lf-surface:    var(--paper);
  --lf-surface-2:  var(--cloud);
  --lf-text:       var(--navy-900);
  --lf-text-2:     var(--ink-soft);
  --lf-line:       var(--rule);
  --lf-accent:     var(--royal);
  --lf-accent-ink: #ffffff;
  --lf-focus:      var(--bright);
  --lf-serif:      var(--serif);
}

.footer-legal-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 18px; }
.footer-legal-nav a { font-size: 12.5px; color: var(--ink-mute); }
.footer-legal-nav a:hover { color: var(--royal); }
