/* ==========================================================================
   FutureNowRx — Design System / app.css
   Brand: deep teal #0B7A75 · coral #E8734A · sand #FAF7F2 · gold #D9A441
   Type: Sora (headings) / Inter (body)
   Mobile-first · Bootstrap 5.3 compatible
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --fnrx-teal: #0B7A75;
  --fnrx-teal-deep: #0A4A47;
  --fnrx-teal-ink: #0F2E2C;
  --fnrx-coral: #E8734A;
  --fnrx-coral-deep: #D65F35;
  --fnrx-sand: #FAF7F2;
  --fnrx-sand-deep: #F3EDE3;
  --fnrx-gold: #D9A441;
  --fnrx-gold-deep: #B78427;
  --fnrx-line: #E6E1D8;
  --fnrx-muted: #6B7470;
  --fnrx-text: #1F2926;
  --fnrx-white: #FFFFFF;
  --fnrx-radius: 18px;
  --fnrx-radius-sm: 12px;
  --fnrx-shadow: 0 18px 44px rgba(15, 46, 44, .10);
  --fnrx-shadow-lg: 0 30px 70px rgba(15, 46, 44, .16);
  --fnrx-font-head: 'Sora', system-ui, sans-serif;
  --fnrx-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--fnrx-font-body);
  color: var(--fnrx-text);
  background: var(--fnrx-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.62;
}
h1, h2, h3, h4, h5, h6, .font-head { font-family: var(--fnrx-font-head); font-weight: 700; color: var(--fnrx-teal-ink); letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.12; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1.18; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
p  { margin-bottom: 1rem; }
a { color: var(--fnrx-teal); text-decoration: none; }
a:hover { color: var(--fnrx-teal-deep); }
img { max-width: 100%; }
::selection { background: rgba(11,122,117,.18); }
.text-muted, .muted { color: var(--fnrx-muted) !important; }
.small { font-size: .875em; }
a.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--fnrx-teal-ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
a.skip-link:focus { left: 0; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--fnrx-teal-ink); color: #EAF4F2; font-size: 13px; padding: 7px 0;
}
.announcement-bar i { color: var(--fnrx-gold); }

/* ---------- Navbar ---------- */
.site-nav {
  background: #fff; padding-top: 12px; padding-bottom: 12px;
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-nav.scrolled {
  box-shadow: 0 10px 30px rgba(15,46,44,.08);
}
.navbar-brand { font-family: var(--fnrx-font-head); font-weight: 800; color: var(--fnrx-teal-ink); display: flex; align-items: center; gap: 10px; }
.navbar-brand:hover { color: var(--fnrx-teal-ink); }
.brand-hex {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--fnrx-teal) 0%, #0C8B85 100%);
  display: grid; place-items: center; color: #fff;
}
.brand-hex svg { width: 18px; height: 18px; }
.site-nav .nav-link {
  color: var(--fnrx-teal-ink); font-weight: 600; font-size: 15px; padding: 8px 14px;
}
.site-nav .nav-link:hover, .site-nav .nav-link:focus { color: var(--fnrx-teal); }
.site-nav .nav-link.active { color: var(--fnrx-teal); }
.site-nav .nav-link i { font-size: 12px; vertical-align: 1px; margin-left: 2px; }
/* Care dropdown panel */
.care-menu {
  border: 0; border-radius: 14px; box-shadow: var(--fnrx-shadow-lg); padding: 10px;
  min-width: 480px; background: #fff;
}
.care-menu .dropdown-item { border-radius: 10px; padding: 9px 12px; display: flex; align-items: center; gap: 12px; }
.care-menu .dropdown-item:hover { background: var(--fnrx-sand); }
.care-menu .dropdown-item .ic {
  width: 36px; height: 36px; border-radius: 10px; background: var(--fnrx-sand-deep);
  display: grid; place-items: center; color: var(--fnrx-teal); flex: none;
}
.care-menu .dropdown-item .tx { line-height: 1.25; }
.care-menu .dropdown-item .tx strong { display: block; font-size: 14.5px; color: var(--fnrx-teal-ink); }
.care-menu .dropdown-item .tx span { font-size: 12.5px; color: var(--fnrx-muted); }
@media (max-width: 991.98px) {
  .care-menu { min-width: 0; box-shadow: none; border: 1px solid var(--fnrx-line); }
}

/* ---------- Buttons ---------- */
.btn-hero, .btn-care, .btn-outline-hero, .btn-sm-care {
  font-weight: 700; border-radius: 999px; padding: 12px 26px; letter-spacing: .01em;
}
.btn-hero {
  background: linear-gradient(135deg, var(--fnrx-teal) 0%, #0C8B85 100%);
  border: 0; color: #fff; box-shadow: 0 10px 26px rgba(11,122,117,.35);
}
.btn-hero:hover { color: #fff; background: linear-gradient(135deg, var(--fnrx-teal-deep) 0%, var(--fnrx-teal) 100%); transform: translateY(-1px); }
.btn-care {
  background: var(--fnrx-coral); border: 0; color: #fff; box-shadow: 0 10px 26px rgba(232,115,74,.35);
}
.btn-care:hover { background: var(--fnrx-coral-deep); border: 0; color: #fff; transform: translateY(-1px); }
.btn-outline-hero {
  border: 2px solid var(--fnrx-teal); color: var(--fnrx-teal-deep); background: transparent;
}
.btn-outline-hero:hover { background: var(--fnrx-teal); border-color: var(--fnrx-teal); color: #fff; }
.btn-sm-care {
  background: transparent; border: 1.5px solid var(--fnrx-line); color: var(--fnrx-teal-deep);
  font-size: 14px; padding: 8px 18px;
}
.btn-sm-care:hover { border-color: var(--fnrx-teal); background: var(--fnrx-sand); color: var(--fnrx-teal-deep); }
.btn-link-more { color: var(--fnrx-teal); font-weight: 700; }
.btn-link-more:hover { color: var(--fnrx-coral); }
.btn-link-more i { transition: transform .2s; }
.btn-link-more:hover i { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 88% -12%, rgba(217,164,65,.16), transparent 60%),
    radial-gradient(700px 400px at -8% 112%, rgba(232,115,74,.12), transparent 55%),
    linear-gradient(180deg, var(--fnrx-sand) 0%, #fff 100%);
  overflow: hidden;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: 999px;
  padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--fnrx-teal-deep);
  box-shadow: 0 4px 14px rgba(15,46,44,.06);
}
.hero .eyebrow i { color: var(--fnrx-gold); }
.hero h1 { margin: 18px 0 14px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--fnrx-teal) 10%, #0C8B85 55%, var(--fnrx-gold) 110%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead-copy { font-size: clamp(1rem, 1.6vw, 1.18rem); color: #3E4A47; max-width: 560px; }
.hero .btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 18px; }
.hero .trust-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; font-size: 13.5px; color: var(--fnrx-muted); }
.hero .trust-row .item { display: inline-flex; align-items: center; gap: 7px; }
.hero .trust-row .item i { color: var(--fnrx-teal); }
.hero-media { position: relative; }
.hero-media .photo-ring {
  border-radius: 30px; overflow: hidden; box-shadow: var(--fnrx-shadow-lg);
  border: 6px solid #fff;
}
.hero-media .float-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 10px 16px;
  box-shadow: var(--fnrx-shadow); border: 1px solid var(--fnrx-line);
  font-size: 13px; font-weight: 600; color: var(--fnrx-teal-ink);
  display: flex; align-items: center; gap: 9px;
}
.hero-media .float-card i { font-size: 17px; }
.float-card.fc-1 { top: 22px; left: -14px; animation: floaty 5s ease-in-out infinite; }
.float-card.fc-2 { bottom: 34px; right: -10px; animation: floaty 6s ease-in-out infinite reverse; }
.float-card.fc-3 { bottom: -16px; left: 18%; animation: floaty 7s ease-in-out infinite; }
.float-card .fc-ico {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none;
}
.fc-ico.teal { background: #E8F3F1; color: var(--fnrx-teal); }
.fc-ico.coral { background: #FDF1EA; color: var(--fnrx-coral); }
.fc-ico.gold { background: #FDF6E4; color: var(--fnrx-gold-deep); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 767.98px) {
  .float-card.fc-1 { left: 0; }
  .float-card.fc-2 { right: 0; }
  .float-card.fc-3 { display: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--fnrx-teal-ink); color: #EAF4F2; padding: 26px 0;
}
.trust-strip .inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; align-items: center;
}
.trust-strip .t-item { display: flex; align-items: center; gap: 12px; }
.trust-strip .t-item i { font-size: 22px; color: var(--fnrx-gold); }
.trust-strip .t-item .t-k { font-size: 17px; font-weight: 800; font-family: var(--fnrx-font-head); line-height: 1.1; }
.trust-strip .t-item .t-s { font-size: 12px; color: #B9CFCB; }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-tight { padding: 56px 0; }
.section-sand { background: var(--fnrx-sand); }
.section-teal { background: var(--fnrx-teal-deep); color: #EAF4F2; }
.section-teal h2, .section-teal h3 { color: #fff; }
.section-teal p { color: #C7D9D5; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow-line {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--fnrx-teal);
}
.eyebrow-line::before { content: ""; width: 26px; height: 2px; background: var(--fnrx-coral); border-radius: 2px; }
.section-head.center .eyebrow-line::after { content: ""; width: 26px; height: 2px; background: var(--fnrx-coral); border-radius: 2px; }

/* ---------- Care cards grid ---------- */
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.care-card {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius);
  padding: 26px 24px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.care-card:hover { transform: translateY(-5px); box-shadow: var(--fnrx-shadow); border-color: rgba(11,122,117,.35); }
.care-card .ic {
  width: 52px; height: 52px; border-radius: 15px; background: linear-gradient(135deg, #E8F3F1, #F6FAF9);
  display: grid; place-items: center; color: var(--fnrx-teal); margin-bottom: 16px; font-size: 24px;
}
.care-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.care-card p { color: #4A5551; font-size: 14.5px; margin-bottom: 16px; min-height: 66px; }
.care-card .card-link { color: var(--fnrx-teal); font-weight: 700; font-size: 14px; }
.care-card .card-link:hover { color: var(--fnrx-coral); }
.care-card .card-link i { transition: transform .2s; }
.care-card .card-link:hover i { transform: translateX(3px); }

/* ---------- Journey steps ---------- */
.journey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.step-card {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius);
  padding: 24px 22px; position: relative;
}
.step-card .step-ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--fnrx-teal-ink); color: var(--fnrx-gold); font-size: 20px; margin-bottom: 14px;
}
.step-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step-card p { font-size: 13.8px; color: #4A5551; margin: 0; }
.step-card .step-num {
  position: absolute; top: 18px; right: 20px; font-family: var(--fnrx-font-head);
  font-size: 15px; font-weight: 800; color: #E1D9C8;
}
.step-info {
  margin-top: 14px; background: var(--fnrx-sand); border: 1px dashed var(--fnrx-line);
  border-radius: 10px; padding: 10px 14px; font-size: 12.8px; color: #55605B; line-height: 1.5;
}
.step-info i { color: var(--fnrx-teal); }

/* ---------- Treatment cards ---------- */
.trt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.trt-card {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius);
  padding: 26px 24px; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease;
}
.trt-card:hover { transform: translateY(-5px); box-shadow: var(--fnrx-shadow); }
.trt-card .cat-pill {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 6px;
  background: #E8F3F1; color: var(--fnrx-teal-deep); border-radius: 999px;
  padding: 4px 12px; font-size: 12px; font-weight: 700;
}
.trt-card h3 { font-size: 1.18rem; margin: 12px 0 6px; }
.trt-card .t-desc { color: #4A5551; font-size: 14.3px; flex: 1; }
.trt-card .t-price { font-family: var(--fnrx-font-head); font-weight: 800; color: var(--fnrx-teal-ink); font-size: 19px; }
.trt-card .t-price small { font-weight: 600; color: var(--fnrx-muted); font-size: 12.5px; }
.trt-card .t-actions { display: flex; gap: 10px; align-items: center; margin-top: 16px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius);
  padding: 30px 26px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  border: 2px solid var(--fnrx-teal); box-shadow: var(--fnrx-shadow);
}
.price-card .plan-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--fnrx-coral); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .05em;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; }
.price-amount { font-family: var(--fnrx-font-head); font-size: 46px; font-weight: 800; color: var(--fnrx-teal-ink); line-height: 1; }
.price-amount small { font-size: 15px; font-weight: 600; color: var(--fnrx-muted); }
.price-list { list-style: none; padding: 0; margin: 18px 0; flex: 1; }
.price-list li {
  display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 14.3px; color: #38423E;
  border-bottom: 1px dashed #EFEAE1;
}
.price-list li:last-child { border-bottom: 0; }
.price-list li i { color: var(--fnrx-teal); margin-top: 3px; }
.price-fine { font-size: 12.3px; color: var(--fnrx-muted); margin-top: 14px; line-height: 1.55; }
.price-pill {
  display: inline-flex; align-items: center; gap: 8px; background: #FDF6E4; color: var(--fnrx-gold-deep);
  border: 1px solid #EEDFB2; border-radius: 999px; padding: 6px 16px; font-weight: 700; font-size: 14px;
}
.price-pill i { font-size: 13px; }
.pricing-table { width: 100%; font-size: 14px; border-collapse: separate; border-spacing: 0; }
.pricing-table th {
  background: var(--fnrx-sand); color: var(--fnrx-muted); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .05em; padding: 11px 14px; border-bottom: 1px solid var(--fnrx-line); white-space: nowrap;
}
.pricing-table td { padding: 12px 14px; border-bottom: 1px solid #EFEAE1; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table .cat-row td {
  background: #F6FAF9; font-weight: 700; color: var(--fnrx-teal-deep); font-size: 13px;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
}
.testi-card .stars { color: var(--fnrx-gold); display: flex; gap: 2px; }
.testi-card .stars .star { width: 17px; height: 17px; }
.testi-card .stars .star:not(.filled) { color: #E1D9C8; }
.testi-card blockquote { margin: 0; font-size: 15px; color: #38423E; flex: 1; }
.testi-card .who { display: flex; align-items: center; gap: 11px; }
.testi-card .who .ava {
  width: 38px; height: 38px; border-radius: 50%; background: var(--fnrx-sand-deep);
  display: grid; place-items: center; color: var(--fnrx-teal-deep); font-weight: 700; font-size: 14px;
}
.testi-card .who .n { font-weight: 700; font-size: 14px; color: var(--fnrx-teal-ink); }
.testi-card .who .l { font-size: 12.5px; color: var(--fnrx-muted); }

/* ---------- Providers ---------- */
.prov-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.prov-card {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.prov-card .ph { position: relative; aspect-ratio: 1 / 1.02; overflow: hidden; background: var(--fnrx-sand-deep); }
.prov-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.prov-card .cred-badge {
  position: absolute; bottom: 12px; left: 12px; background: rgba(15,46,44,.86); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.prov-card .bd { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.prov-card h3 { font-size: 1.08rem; margin-bottom: 2px; }
.prov-card .role { color: var(--fnrx-teal); font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.prov-card .bio { font-size: 13.8px; color: #4A5551; flex: 1; }
.prov-card .focus { margin-top: 14px; font-size: 12.3px; color: var(--fnrx-muted); }
.prov-card .focus i { color: var(--fnrx-gold); }
.provider-card-mini {
  display: flex; gap: 12px; align-items: center; background: #fff; border: 1px solid var(--fnrx-line);
  border-radius: var(--fnrx-radius-sm); padding: 12px 16px;
}
.provider-card-mini img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.provider-card-mini .n { font-weight: 700; font-size: 14px; color: var(--fnrx-teal-ink); }
.provider-card-mini .r { font-size: 12.3px; color: var(--fnrx-muted); }

/* ---------- FAQ ---------- */
.faq-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.faq-nav-btn {
  border: 1.5px solid var(--fnrx-line); background: #fff; color: var(--fnrx-teal-deep);
  border-radius: 999px; padding: 7px 18px; font-size: 13.5px; font-weight: 700;
}
.faq-nav-btn:hover { border-color: var(--fnrx-teal); color: var(--fnrx-teal); }
.faq-nav-btn.active { background: var(--fnrx-teal); border-color: var(--fnrx-teal); color: #fff; }
.faq-group { margin-bottom: 34px; }
.faq-group > h3 {
  font-size: 1.02rem; color: var(--fnrx-teal-deep); margin-bottom: 14px; display: flex; align-items: center; gap: 9px;
}
.faq-group > h3 i { color: var(--fnrx-coral); }
.accordion-item { border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius-sm) !important; overflow: hidden; margin-bottom: 10px; }
.accordion-button { font-weight: 700; color: var(--fnrx-teal-ink); font-size: 15px; padding: 16px 20px; }
.accordion-button:not(.collapsed) { background: var(--fnrx-sand); color: var(--fnrx-teal-deep); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--fnrx-line); }
.accordion-body { font-size: 14.3px; color: #38423E; padding: 4px 20px 18px; }
.accordion-button::after { background-size: 1rem; opacity: .6; }

/* ---------- Forms & privacy notes ---------- */
.form-panel {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius);
  padding: 30px 28px; box-shadow: var(--fnrx-shadow);
}
.form-panel h3 { font-size: 1.25rem; }
.form-label { font-weight: 600; color: var(--fnrx-teal-ink); font-size: 14px; }
.form-control, .form-select {
  border-radius: 10px; border-color: var(--fnrx-line); padding: 10px 14px; font-size: 15px;
}
.form-control:focus, .form-select:focus { border-color: var(--fnrx-teal); box-shadow: 0 0 0 .2rem rgba(11,122,117,.13); }
.privacy-note {
  display: flex; gap: 9px; align-items: flex-start; background: #E8F3F1; border: 1px solid #BFE0DC;
  color: #0A5B57; border-radius: 10px; padding: 10px 14px; font-size: 12.6px; line-height: 1.5; margin-top: 16px;
}
.privacy-note i { flex: none; margin-top: 2px; }
.hp-wrap { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius-sm);
  padding: 22px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.contact-card .ic {
  width: 44px; height: 44px; border-radius: 12px; background: #E8F3F1; color: var(--fnrx-teal);
  display: grid; place-items: center; font-size: 20px; flex: none;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 3px; }
.contact-card p { margin: 0; font-size: 13.6px; color: #4A5551; }
.contact-card a { color: var(--fnrx-teal); font-weight: 600; }
.contact-card-alert { border-color: #F5C9B4; }
.contact-card-alert .ic { background: #FDF1EA; color: var(--fnrx-coral); }

/* ---------- Quiz / eligibility ---------- */
.quiz-panel {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: 22px;
  box-shadow: var(--fnrx-shadow-lg); overflow: hidden;
}
.quiz-head {
  background: linear-gradient(135deg, var(--fnrx-teal-ink) 0%, #123A37 60%, #0E5F55 100%);
  color: #fff; padding: 30px 32px 26px; position: relative; overflow: hidden;
}
.quiz-head::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at 90% -30%, rgba(217,164,65,.25), transparent 60%),
              radial-gradient(300px 160px at 0% 130%, rgba(232,115,74,.18), transparent 55%);
}
.quiz-head .qh-inner { position: relative; z-index: 1; }
.quiz-head h1 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.quiz-head p { color: #C7D9D5; margin: 8px 0 0; font-size: 14.5px; }
.quiz-body { padding: 30px 32px 34px; }
.quiz-question { font-family: var(--fnrx-font-head); font-weight: 700; font-size: 1.12rem; color: var(--fnrx-teal-ink); margin-bottom: 6px; }
.quiz-hint { font-size: 13px; color: var(--fnrx-muted); margin-bottom: 18px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.choice-btn {
  display: flex; align-items: center; gap: 13px; text-align: left;
  background: #fff; border: 2px solid var(--fnrx-line); border-radius: 14px;
  padding: 15px 18px; font-weight: 600; color: var(--fnrx-teal-ink); font-size: 14.5px;
  transition: border-color .15s ease, background .15s ease, transform .15s ease; cursor: pointer; width: 100%;
}
.choice-btn:hover { border-color: rgba(11,122,117,.45); background: var(--fnrx-sand); }
.choice-btn.selected {
  border-color: var(--fnrx-teal); background: #E8F3F1;
  box-shadow: 0 6px 18px rgba(11,122,117,.14);
}
.choice-btn .ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--fnrx-sand-deep);
  display: grid; place-items: center; color: var(--fnrx-teal); font-size: 19px; flex: none;
}
.choice-btn.selected .ico { background: var(--fnrx-teal); color: #fff; }
.choice-btn .badge-check {
  margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: var(--fnrx-teal);
  color: #fff; display: none; place-items: center; font-size: 12px; flex: none;
}
.choice-btn.selected .badge-check { display: grid; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.progress-bar-wrap { height: 8px; background: var(--fnrx-sand-deep); border-radius: 99px; overflow: hidden; margin: 4px 0 22px; }
.progress-bar-fill {
  height: 100%; width: 0%; border-radius: 99px;
  background: linear-gradient(90deg, var(--fnrx-teal), #0C8B85);
  transition: width .35s ease;
}
.quiz-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--fnrx-muted); font-weight: 600; border: 0; background: none; }
.quiz-back-link:hover { color: var(--fnrx-teal); }
.quiz-result-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.quiz-result-head .ok-ico {
  width: 52px; height: 52px; border-radius: 50%; background: #E8F3F1; color: var(--fnrx-teal);
  display: grid; place-items: center; font-size: 26px; flex: none;
}
.quiz-consent { font-size: 12.8px; color: var(--fnrx-muted); line-height: 1.55; }
.quiz-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.quiz-benefits .b {
  display: inline-flex; gap: 7px; align-items: center; background: var(--fnrx-sand);
  border: 1px solid var(--fnrx-line); border-radius: 999px; padding: 6px 14px; font-size: 12.5px; font-weight: 600; color: #38423E;
}
.quiz-benefits .b i { color: var(--fnrx-teal); }
.safety-block {
  background: #FDF6E4; border: 1px solid #EEDFB2; border-radius: var(--fnrx-radius-sm);
  padding: 18px 22px; font-size: 13.5px; color: #6B5B23; line-height: 1.6;
}
.safety-block i { color: var(--fnrx-gold-deep); }
.elig-block {
  background: linear-gradient(135deg, var(--fnrx-teal-ink) 0%, #14514C 100%);
  color: #EAF4F2; border-radius: var(--fnrx-radius); padding: 34px 32px; position: relative; overflow: hidden;
}
.elig-block::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 220px at 92% -20%, rgba(217,164,65,.22), transparent 60%);
}
.elig-block > * { position: relative; z-index: 1; }
.elig-block h2 { color: #fff; }
.elig-block p { color: #C7D9D5; }
.eyebrow-light { color: #A8C6C1; }
.step-ico-lg {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(217,164,65,.16); color: var(--fnrx-gold); font-size: 24px; margin-bottom: 14px;
}
.d-inline-grid { display: inline-grid !important; }

/* ---------- Category hero ---------- */
.cat-hero {
  background:
    radial-gradient(700px 380px at 85% -10%, rgba(217,164,65,.14), transparent 60%),
    linear-gradient(180deg, var(--fnrx-sand) 0%, #fff 100%);
  padding: 64px 0 40px; overflow: hidden;
}
.cat-hero h1 { margin: 14px 0 12px; }
.cat-hero .lead-copy { color: #3E4A47; max-width: 640px; font-size: 1.05rem; }
.cat-hero .hero-img {
  border-radius: 22px; overflow: hidden; box-shadow: var(--fnrx-shadow-lg); border: 5px solid #fff;
}

/* ---------- Rich content ---------- */
.rich-content h2 { margin: 30px 0 12px; font-size: 1.5rem; }
.rich-content h3 { margin: 24px 0 10px; }
.rich-content p { color: #38423E; }
.rich-content ul { padding-left: 22px; color: #38423E; }
.rich-content ul li { margin-bottom: 8px; }
.rich-content ul li::marker { color: var(--fnrx-teal); }

/* ---------- Legal content ---------- */
.legal-content h2 { font-size: 1.3rem; margin: 30px 0 10px; }
.legal-content h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.legal-content p, .legal-content li { color: #38423E; font-size: 14.6px; }
.legal-content .callout {
  background: var(--fnrx-sand); border: 1px solid var(--fnrx-line); border-left: 4px solid var(--fnrx-teal);
  border-radius: 10px; padding: 14px 18px; margin: 18px 0; font-size: 14px;
}
.legal-content .callout.gold { border-left-color: var(--fnrx-gold); }
.legal-content .callout.coral { border-left-color: var(--fnrx-coral); }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(800px 400px at 15% -10%, rgba(217,164,65,.20), transparent 55%),
    radial-gradient(600px 340px at 100% 120%, rgba(232,115,74,.16), transparent 55%),
    linear-gradient(135deg, var(--fnrx-teal-ink) 0%, var(--fnrx-teal-deep) 100%);
  color: #EAF4F2; border-radius: 26px; padding: 54px 48px; position: relative; overflow: hidden;
}
.final-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.final-cta p { color: #C7D9D5; max-width: 640px; }
.final-cta .btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
@media (max-width: 767.98px) { .final-cta { padding: 38px 26px; } }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13px; margin-bottom: 18px; }
.breadcrumb a { color: var(--fnrx-muted); }
.breadcrumb a:hover { color: var(--fnrx-teal); }
.breadcrumb .active { color: var(--fnrx-teal-deep); font-weight: 600; }

/* ---------- Feature boxes (About) ---------- */
.feature-box {
  background: #fff; border: 1px solid var(--fnrx-line); border-radius: var(--fnrx-radius-sm);
  padding: 22px 22px; height: 100%;
}
.feature-box .ic {
  width: 44px; height: 44px; border-radius: 12px; background: #E8F3F1; color: var(--fnrx-teal);
  display: grid; place-items: center; font-size: 20px; margin-bottom: 14px;
}
.feature-box h3 { font-size: 1.02rem; margin-bottom: 8px; }
.feature-box p { font-size: 13.8px; color: #4A5551; margin: 0; }

/* ---------- Thanks page ---------- */
.section-thanks { padding: 90px 0; background: var(--fnrx-sand); }
.thanks-check {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 22px;
  background: #E8F3F1; color: var(--fnrx-teal); display: grid; place-items: center; font-size: 34px;
  border: 2px solid #BFE0DC;
}

/* ---------- Related treatments list ---------- */
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 2px; border-bottom: 1px dashed #EFEAE1; font-size: 14px;
}
.related-list li:last-child { border-bottom: 0; }
.related-list a { color: var(--fnrx-teal-deep); font-weight: 600; }
.related-list a:hover { color: var(--fnrx-coral); }
.related-list .pr { font-weight: 700; color: var(--fnrx-teal-ink); white-space: nowrap; font-size: 13.5px; }

/* ---------- Empty state ---------- */
.empty-state { padding: 60px 20px; text-align: center; color: var(--fnrx-muted); }
.empty-state i { font-size: 40px; color: #C9C2B4; display: block; margin-bottom: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--fnrx-teal-ink); color: #B9CFCB; padding: 64px 0 0; margin-top: 76px;
}
.site-footer h4 { color: #fff; font-size: .98rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #B9CFCB; font-size: 14px; }
.site-footer a:hover { color: var(--fnrx-gold); }
.site-footer .f-brand { font-family: var(--fnrx-font-head); color: #fff; font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
.site-footer .f-about { font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); margin-top: 46px; padding: 20px 0;
  font-size: 12.6px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
}
.disclaimer-strip {
  background: #0B2624; color: #8FA8A4; font-size: 11.8px; padding: 14px 0; line-height: 1.6;
}

/* ---------- Mobile CTA bar ---------- */
#mobileCtaBar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040;
  background: #fff; border-top: 1px solid var(--fnrx-line);
  box-shadow: 0 -8px 26px rgba(15,46,44,.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
}
#mobileCtaBar .row-bar { display: flex; gap: 10px; }
#mobileCtaBar .btn { flex: 1; font-size: 14.5px; padding: 11px 10px; }
@media (max-width: 991.98px) { body.has-mobile-cta #mobileCtaBar { display: block; } }

/* ---------- Flash messages ---------- */
.flash-wrap { max-width: 720px; margin: 18px auto 0; }

/* ---------- Utilities ---------- */
.gap-10 { gap: 10px; }
.gap-14 { gap: 14px; }
.gap-18 { gap: 18px; }
.maxw-560 { max-width: 560px; }
.maxw-640 { max-width: 640px; }
.maxw-720 { max-width: 720px; }
.minh-66 { min-height: 66px; }
.rounded-14 { border-radius: 14px; }
.icon-teal { color: var(--fnrx-teal); }
.icon-gold { color: var(--fnrx-gold); }
.icon-coral { color: var(--fnrx-coral); }
.photo-frame { border-radius: 20px; overflow: hidden; border: 5px solid #fff; box-shadow: var(--fnrx-shadow-lg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
