:root {
  --ink: #17313b;
  --muted: #5a6f78;
  --line: #dce9eb;
  --soft: #eef8f7;
  --soft-blue: #eef7fb;
  --teal: #1f9d94;
  --teal-dark: #13766f;
  --blue: #2f7dbd;
  --green: #6aae75;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(23, 49, 59, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 0.95rem;
}

.brand small {
  display: block;
  margin-top: -0.2rem;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 650;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--teal-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 157, 148, 0.22);
  background: var(--teal-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.mobile-menu {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mobile-panel {
  display: none;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.mobile-panel.open {
  display: grid;
}

.mobile-panel a {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 750;
}

.section {
  padding: 4rem 0;
}

.section.soft {
  background: var(--soft);
}

.section.blue {
  background: var(--soft-blue);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #dcefee;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 40%, rgba(255, 255, 255, 0.35) 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 4rem;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.25rem, 8vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.8rem;
  max-width: 670px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(31, 157, 148, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  flex: 0 0 auto;
}

.intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.intro p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.grid.two {
  gap: 2rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(23, 49, 59, 0.06);
}

.card p,
.card li {
  color: var(--muted);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--soft);
  color: var(--teal-dark);
  font-weight: 900;
}

.feature-list,
.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.service-area span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-weight: 750;
  font-size: 0.9rem;
}

.callout {
  border-left: 4px solid var(--teal);
  background: var(--soft);
  padding: 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c9dcdf;
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 157, 148, 0.18);
  border-color: var(--teal);
}

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--muted);
}

.checkbox input {
  min-height: 22px;
  margin-top: 0.2rem;
}

.form-note,
.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  color: var(--teal-dark);
  font-weight: 800;
}

.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.page-hero .lead {
  max-width: 760px;
}

.pricing {
  display: grid;
  gap: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  padding: 3rem 0 6rem;
  background: #153039;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--white);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sticky-call {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .sticky-call {
    display: none;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}

@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 64px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(255, 255, 255, 1) 100%);
  }

  .hero img {
    height: 42%;
    object-position: 62% 50%;
  }

  .hero-content {
    padding: 20rem 0 2.5rem;
  }

  .badges {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}


/* Premium responsive header */
:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --accent: #e0f7f4;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --background: #ffffff;
  --ink: var(--text);
  --line: var(--border);
  --teal: var(--primary);
  --teal-dark: var(--primary-dark);
  --soft: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(15, 118, 110, 0.18);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.header-nav {
  min-height: 76px;
  gap: 1.25rem;
}

.brand {
  min-width: 0;
  color: var(--text);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.05;
}

.trademark {
  font-size: 0.58em;
  vertical-align: super;
  margin-left: 0.05rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
}

.nav-links {
  gap: 1.55rem;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 0.5rem 0;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--primary-dark);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  gap: 0.75rem;
}

.phone-link {
  display: none;
  align-items: center;
  min-height: 44px;
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--primary);
}

.button.header-cta,
.mobile-menu-cta,
.mobile-cta-bar .button {
  border-radius: 999px;
}

.button.header-cta {
  min-height: 44px;
  padding-inline: 1.15rem;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
}

.button.header-cta:hover,
.button.header-cta:focus-visible {
  background: var(--primary-dark);
}

.mobile-menu {
  width: 48px;
  height: 48px;
  border-color: var(--border);
  border-radius: 999px;
  background: var(--background);
  gap: 4px;
  flex-direction: column;
}

.mobile-menu span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 0.9rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.mobile-panel.open {
  display: grid;
  animation: headerMenuIn 180ms ease both;
}

.mobile-panel a {
  min-height: 52px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 850;
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.mobile-panel .mobile-menu-cta {
  justify-content: center;
  min-height: 50px;
  margin: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0.75rem max(1rem, env(safe-area-inset-left)) calc(0.75rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  box-shadow: 0 -14px 34px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
}

.mobile-cta-bar .button {
  min-height: 48px;
  padding: 0.75rem 0.8rem;
  font-size: 0.95rem;
}

@keyframes headerMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 560px) {
  .header-nav {
    min-height: 68px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }
}

@media (min-width: 720px) {
  .phone-link {
    display: inline-flex;
  }

  .mobile-cta-bar {
    display: none;
  }
}

@media (min-width: 980px) {
  .header-nav {
    min-height: 82px;
  }

  .nav-links {
    display: flex;
  }
}


/* Premium conversion hero */
.conversion-hero {
  min-height: calc(100svh - 76px);
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(47, 125, 189, 0.16), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f3fbfa 48%, #eef7fb 100%);
}

.conversion-hero::after {
  display: none;
}

.conversion-hero .hero-content {
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
}

.conversion-hero .hero-copy {
  max-width: 710px;
}

.conversion-hero h1 {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(2.3rem, 9vw, 4.7rem);
}

.conversion-hero .lead {
  max-width: 680px;
  color: #40545f;
}

.conversion-hero .hero-actions {
  margin-top: 1.35rem;
}

.conversion-hero .button {
  border-radius: 999px;
  min-height: 50px;
  padding-inline: 1.2rem;
}

.trust-line {
  max-width: 720px;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 850;
}

.hero-disclaimer {
  max-width: 620px;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.consult-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 1.2rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
}

.consult-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  z-index: -1;
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(224, 247, 244, 0.85), rgba(238, 247, 251, 0.35));
}

.consult-card-header {
  display: grid;
  gap: 0.35rem;
  padding: 0.35rem 0.35rem 1rem;
}

.consult-kicker {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consult-card strong {
  color: var(--text);
  font-size: clamp(1.45rem, 6vw, 2rem);
  line-height: 1.08;
}

.progress-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.45fr;
  align-items: end;
  gap: 0.65rem;
  height: 92px;
  margin: 0.4rem 0 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
}

.progress-visual span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #2f7dbd, var(--primary));
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.16);
}

.progress-visual span:nth-child(1) { height: 42px; opacity: 0.5; }
.progress-visual span:nth-child(2) { height: 58px; opacity: 0.72; }
.progress-visual span:nth-child(3) { height: 74px; }

.consult-list {
  display: grid;
  gap: 0.65rem;
}

.consult-list div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 850;
}

.check-dot {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.check-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.mini-illustration {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(47, 125, 189, 0.1));
}

.pulse-ring {
  width: 68px;
  height: 68px;
  border: 10px solid rgba(15, 118, 110, 0.16);
  border-top-color: var(--primary);
  border-radius: 50%;
}

.chart-card {
  display: grid;
  gap: 0.45rem;
}

.chart-card span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.18);
}

.chart-card span:nth-child(1) { width: 92%; }
.chart-card span:nth-child(2) { width: 68%; background: rgba(47, 125, 189, 0.2); }
.chart-card span:nth-child(3) { width: 48%; }

@media (max-width: 560px) {
  .conversion-hero {
    min-height: auto;
  }

  .conversion-hero .hero-content {
    padding-top: 1.6rem;
    padding-bottom: 2.1rem;
  }

  .conversion-hero h1 {
    margin-top: 0.55rem;
  }

  .conversion-hero .lead {
    margin-top: 0.85rem;
  }

  .conversion-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .conversion-hero .button {
    width: auto;
    min-height: 48px;
    padding-inline: 0.7rem;
    font-size: 0.93rem;
  }

  .trust-line {
    font-size: 0.86rem;
  }

  .consult-card {
    border-radius: 20px;
    padding: 0.9rem;
  }

  .progress-visual,
  .mini-illustration {
    display: none;
  }
}

@media (min-width: 860px) {
  .conversion-hero {
    min-height: calc(100svh - 82px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .consult-card {
    justify-self: end;
  }
}


/* Secondary email contact link */
.email-link {
  display: none;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.email-link:hover,
.email-link:focus-visible,
.contact-help a,
.form-note a {
  color: var(--primary-dark);
}

.contact-help {
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 750;
}

@media (min-width: 1180px) {
  .email-link {
    display: inline-flex;
  }
}


/* Premium eligibility intake form */
.eligibility-section {
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 118, 110, 0.14), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(47, 125, 189, 0.14), transparent 32%),
    linear-gradient(135deg, #f6fcfb 0%, #eef8f7 52%, #eef7fb 100%);
}

.eligibility-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: start;
}

.eligibility-copy {
  max-width: 680px;
}

.eligibility-copy .lead {
  color: #40545f;
}

.intake-trust-card {
  margin-top: 1.4rem;
  padding: 1.1rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.intake-trust-card strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.eligibility-form {
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border-color: rgba(15, 118, 110, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.eligibility-form .form-grid {
  gap: 0.9rem;
}

.eligibility-form label span {
  color: var(--primary-dark);
}

.eligibility-form input,
.eligibility-form select,
.eligibility-form textarea {
  min-height: 52px;
  border-color: #cfe1e4;
  border-radius: 14px;
  background: #fbfefd;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.eligibility-form textarea {
  min-height: 118px;
}

.eligibility-form input:hover,
.eligibility-form select:hover,
.eligibility-form textarea:hover {
  border-color: rgba(15, 118, 110, 0.42);
}

.eligibility-form [aria-invalid="true"] {
  border-color: #b42318;
  background: #fffafa;
}

.field-error {
  min-height: 1.15rem;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 750;
}

.consent-field {
  margin-top: 0.2rem;
  padding: 0.9rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 16px;
  background: rgba(224, 247, 244, 0.42);
}

.submit-button {
  min-height: 54px;
  border-radius: 999px;
  background: var(--primary);
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.2);
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--primary-dark);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.5rem;
  padding: 0;
  border-radius: 14px;
}

.form-status.is-success,
.form-status.is-error {
  padding: 0.85rem 1rem;
}

.form-status.is-success {
  background: rgba(224, 247, 244, 0.82);
  color: var(--primary-dark);
}

.form-status.is-error {
  background: #fff2f0;
  color: #b42318;
}

@media (min-width: 860px) {
  .eligibility-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .eligibility-copy {
    position: sticky;
    top: 112px;
  }
}


.directions-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(224, 247, 244, 0.5);
  border-radius: 999px;
  background: rgba(224, 247, 244, 0.12);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.directions-button:hover,
.directions-button:focus-visible {
  background: rgba(224, 247, 244, 0.2);
  border-color: rgba(224, 247, 244, 0.82);
  transform: translateY(-1px);
}


/* UI/UX Pro Max v2 homepage */
.pro-hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 251, 249, 0.94) 44%, rgba(238, 247, 251, 0.92) 74%, rgba(249, 244, 235, 0.88) 100%);
}

.pro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(15, 118, 110, 0.16), transparent 28%),
    radial-gradient(circle at 16% 80%, rgba(47, 125, 189, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-atmosphere span {
  position: absolute;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  transform: rotate(-8deg);
}

.hero-atmosphere span:nth-child(1) {
  width: 180px;
  height: 180px;
  border-radius: 36px;
  right: 8%;
  top: 14%;
}

.hero-atmosphere span:nth-child(2) {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  left: 5%;
  bottom: 18%;
  transform: rotate(12deg);
}

.hero-atmosphere span:nth-child(3) {
  width: 320px;
  height: 1px;
  right: 18%;
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.24), transparent);
  border: 0;
  box-shadow: none;
}

.pro-hero .hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(2rem, 5vw, 4.4rem);
  padding-bottom: clamp(2.2rem, 5vw, 4.4rem);
}

.pro-hero .hero-grid {
  gap: clamp(1.5rem, 5vw, 4.5rem);
}

.pro-hero .hero-copy {
  max-width: 760px;
}

.pro-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.pro-hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.pro-hero h1 {
  max-width: 780px;
  color: #10252e;
  font-size: clamp(2.35rem, 7vw, 4.85rem);
  line-height: 0.98;
  margin-top: 0.95rem;
}

.pro-hero .lead {
  max-width: 700px;
  color: #40535d;
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

.pro-hero .hero-actions {
  margin-top: 1.45rem;
  gap: 0.8rem;
}

.pro-hero .button {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 1.25rem;
}

.hero-microcopy {
  margin-top: 0.85rem;
  color: #536a73;
  font-size: 0.92rem;
  font-weight: 750;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.2rem;
  max-width: 760px;
}

.hero-trust-grid div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #20343d;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.hero-trust-grid span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2f7dbd);
  flex: 0 0 auto;
}

.hero-visual-wrap {
  position: relative;
  display: grid;
  gap: 0.85rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.care-path-card,
.floating-phone-card,
.local-trust-card,
.premium-feature-card,
.strip-inner {
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.care-path-card {
  position: relative;
  isolation: isolate;
  padding: clamp(1.05rem, 3vw, 1.45rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.care-path-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% 25%;
  height: 220px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 247, 244, 0.9), transparent 68%);
}

.care-card-topline {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}

.care-card-topline span {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-card-topline strong {
  color: var(--text);
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  line-height: 1.06;
}

.care-path-steps {
  display: grid;
  gap: 0.72rem;
  margin-top: 1rem;
}

.care-path-steps div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.72rem;
  align-items: center;
  padding: 0.76rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.care-path-steps div:hover,
.premium-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.care-path-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2f7dbd);
  color: white;
  font-weight: 900;
}

.care-path-steps p,
.wellness-note p {
  margin: 0;
  color: #344a54;
  font-weight: 850;
}

.wellness-note {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(224, 247, 244, 0.72), rgba(238, 247, 251, 0.82));
}

.wellness-note span {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(47, 125, 189, 0.18)),
    radial-gradient(circle at 50% 45%, white 0 23%, transparent 24%);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.floating-phone-card,
.local-trust-card {
  display: grid;
  gap: 0.12rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.floating-phone-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.floating-phone-card strong {
  color: var(--primary-dark);
  font-size: 1.08rem;
}

.local-trust-card {
  color: #334852;
  font-size: 0.93rem;
  font-weight: 850;
}

.why-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #ffffff;
}

.centered-intro {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.why-grid {
  gap: 1rem;
}

.premium-feature-card {
  position: relative;
  min-height: 210px;
  padding: 1.35rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 251, 0.96));
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.feature-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.15rem;
  border-radius: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 900;
}

.premium-feature-card h3 {
  font-size: 1.25rem;
}

.premium-feature-card p {
  margin-top: 0.7rem;
}

.conversion-strip {
  padding: 0 0 3.5rem;
  background: #ffffff;
}

.strip-inner {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 125, 189, 0.16), transparent 28%),
    linear-gradient(135deg, #f7fcfb, #eef8f7 58%, #f8f2e8);
}

.strip-inner h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
}

.strip-inner p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 750;
}

.strip-actions {
  display: grid;
  gap: 0.7rem;
}

.strip-actions .button {
  border-radius: 999px;
}

@media (max-width: 560px) {
  .pro-hero .hero-content {
    padding-top: 1.25rem;
    padding-bottom: 1.65rem;
  }

  .pro-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .pro-hero .lead {
    font-size: 1rem;
  }

  .hero-trust-grid div {
    border-radius: 16px;
  }

  .hero-visual-wrap {
    margin-top: 0.1rem;
  }

  .care-path-card {
    border-radius: 22px;
  }

  .care-path-steps {
    gap: 0.55rem;
  }

  .care-path-steps div {
    padding: 0.62rem;
  }

  .wellness-note {
    display: none;
  }

  .why-section,
  .conversion-strip {
    padding-bottom: 2.5rem;
  }

  .premium-feature-card {
    min-height: 0;
    border-radius: 20px;
  }
}

@media (min-width: 700px) {
  .hero-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strip-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }
}

@media (min-width: 860px) {
  .pro-hero {
    min-height: calc(100svh - 82px);
    display: grid;
    align-items: center;
  }

  .pro-hero .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.78fr);
  }

  .floating-phone-card {
    position: absolute;
    left: -34px;
    bottom: 92px;
    width: min(290px, 72%);
  }

  .local-trust-card {
    position: absolute;
    right: -20px;
    bottom: -26px;
    max-width: 315px;
  }

  .strip-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .strip-actions {
    justify-content: end;
  }
}


/* UI/UX Pro Max v2 compact refinements */
@media (max-width: 560px) {
  .pro-hero .hero-content {
    padding-top: 1rem;
    padding-bottom: 1.35rem;
  }

  .pro-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    line-height: 1.02;
  }

  .hero-microcopy,
  .hero-trust-grid {
    margin-top: 0.75rem;
  }

  .hero-trust-grid {
    gap: 0.5rem;
  }

  .hero-trust-grid div {
    min-height: 40px;
    padding: 0.52rem 0.68rem;
    font-size: 0.86rem;
  }

  .care-card-topline {
    padding-bottom: 0.75rem;
  }

  .care-card-topline strong {
    font-size: 1.35rem;
  }

  .care-path-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-path-steps div {
    grid-template-columns: 30px 1fr;
    gap: 0.5rem;
    min-height: 64px;
  }

  .care-path-steps span {
    width: 30px;
    height: 30px;
    font-size: 0.86rem;
  }

  .care-path-steps p {
    font-size: 0.86rem;
    line-height: 1.22;
  }

  .floating-phone-card,
  .local-trust-card {
    padding: 0.74rem 0.85rem;
    border-radius: 18px;
  }

  .local-trust-card {
    font-size: 0.86rem;
  }
}

@media (min-width: 860px) {
  .local-trust-card {
    bottom: 8px;
  }
}


/* ============================================================
   PREMIUM UPGRADE — MedShapeFL UI/UX Pro Max v3
   ============================================================ */

/* ── Path Section (4-step cards after hero) ── */
.path-section {
  padding: 4.5rem 0;
  background: var(--soft);
}

.path-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.path-card {
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 118, 110, 0.26);
}

.path-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, #2f7dbd 100%);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.26);
}

.path-step-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.path-card h3 {
  font-size: 1.18rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  margin-top: 0;
}

.path-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.94rem;
}

@media (min-width: 700px) {
  .path-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .path-cards { grid-template-columns: repeat(4, 1fr); }
}

/* ── Why Section — 4 cards ── */
.why-grid-four {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .why-grid-four { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .why-grid-four { grid-template-columns: repeat(4, 1fr); }
}

/* ── Designed for Real Life Section ── */
.real-life-section {
  padding: 4.5rem 0;
  background: linear-gradient(145deg, #f7fcfb 0%, #eef8f7 55%, #f8f2e8 100%);
}

.real-life-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.25rem;
  align-items: start;
}

.real-life-checklist {
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
}

.real-life-checklist h3 {
  font-size: 1.22rem;
  color: var(--text);
  margin-bottom: 1rem;
  margin-top: 0;
}

.real-life-callout {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.09) 0%, rgba(47, 125, 189, 0.09) 100%);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 24px;
  padding: 1.5rem;
}

.real-life-callout blockquote {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  color: #1a3540;
  line-height: 1.58;
  font-style: italic;
}

.real-life-callout cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.86rem;
  color: var(--primary-dark);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.real-life-illustration {
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.ill-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: var(--soft);
  transition: background 160ms ease;
}

.ill-row:hover { background: var(--accent); }

.ill-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2f7dbd);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.22);
}

.ill-dot.alt  { background: linear-gradient(135deg, #2f7dbd, #6aae75); }
.ill-dot.alt2 { background: linear-gradient(135deg, #6aae75, var(--primary)); }

.ill-text { display: grid; gap: 0.15rem; }
.ill-text strong { font-size: 0.88rem; color: var(--text); font-weight: 850; }
.ill-text span   { font-size: 0.78rem; color: var(--muted); }

@media (min-width: 860px) {
  .real-life-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Local South Florida Support ── */
.local-section {
  padding: 4.5rem 0;
  background: linear-gradient(160deg, #0e2d38 0%, #153039 60%, #0d2530 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.local-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(15, 118, 110, 0.22), transparent 36%),
    radial-gradient(circle at 12% 78%, rgba(47, 125, 189, 0.18), transparent 32%);
  pointer-events: none;
}

.local-section .eyebrow {
  color: rgba(224, 247, 244, 0.72);
  background: rgba(224, 247, 244, 0.1);
  border-color: rgba(224, 247, 244, 0.18);
}

.local-section h2 { color: #ffffff; margin-top: 0.6rem; }

.local-inner {
  position: relative;
  z-index: 1;
}

.local-inner > div > p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.8rem;
  max-width: 480px;
}

.local-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.local-cta .button {
  border-radius: 999px;
  background: var(--primary);
  min-height: 48px;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.28);
}

.local-cta .button.ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

.local-cta .button.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.local-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin-top: 2rem;
}

.local-area-tag {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(224, 247, 244, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  transition: background 160ms ease, border-color 160ms ease;
}

.local-area-tag:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(224, 247, 244, 0.32);
}

.local-area-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.local-note {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.44);
}

@media (min-width: 700px) {
  .local-area-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 860px) {
  .local-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .local-area-grid { margin-top: 0; }
}

/* ── Footer v2 ── */
.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding-bottom: 2rem;
}

@media (min-width: 860px) {
  .footer-grid-v2 {
    grid-template-columns: 1.7fr 1fr 1.25fr;
    gap: 3rem;
  }
}

.footer-brand-name {
  font-size: 1.32rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 750;
  margin-top: 0.15rem;
  margin-bottom: 0.9rem;
}

.footer-brand-col > p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  margin: 0 0 0.9rem;
}

.footer-links li { font-size: 0.92rem; }

.footer-contact-col address {
  font-style: normal;
  font-size: 0.91rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.66);
}

.footer-contact-col address a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-contact-col address a:hover {
  color: rgba(224, 247, 244, 1);
}

.footer-disclaimer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.68;
}

/* ── Premium Page Hero v2 ── */
.page-hero-v2 {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 88% 22%, rgba(15, 118, 110, 0.14), transparent 28%),
    radial-gradient(circle at 10% 78%, rgba(47, 125, 189, 0.12), transparent 32%),
    linear-gradient(145deg, #f3fcfb 0%, #eef8f7 52%, #eef7fb 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-v2 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.75rem;
}

.page-hero-v2 .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.page-hero-v2 h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: #10252e;
  max-width: 820px;
  line-height: 1.04;
}

.page-hero-v2 .lead {
  max-width: 680px;
  color: #40545f;
  margin-top: 1rem;
}

.page-hero-v2 .cta-row { margin-top: 1.6rem; }

/* ── Improved FAQ accordion ── */
.faq-list-v2 {
  display: grid;
  gap: 0.7rem;
}

.faq-list-v2 details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  transition: border-color 170ms ease, box-shadow 170ms ease;
}

.faq-list-v2 details[open] {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  background: rgba(224, 247, 244, 0.18);
}

.faq-list-v2 summary {
  cursor: pointer;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.05rem 1.2rem;
  list-style: none;
  font-size: 1.02rem;
  color: var(--text);
  user-select: none;
}

.faq-list-v2 summary::-webkit-details-marker { display: none; }

.faq-list-v2 summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 200ms ease, background 160ms ease;
}

.faq-list-v2 details[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent);
}

.faq-list-v2 details p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ── Info Cards (inner pages) ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 118, 110, 0.22);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.info-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; margin-top: 0; }
.info-card p  { color: var(--muted); font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* ── Compliance strip ── */
.compliance-strip {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.07) 0%, rgba(47, 125, 189, 0.07) 100%);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  color: #1e3a44;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.68;
}

/* ── CTA conversion strip v2 ── */
.cta-strip-v2 {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1f7db8 100%);
  color: white;
  text-align: center;
}

.cta-strip-v2 .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-strip-v2 h2 {
  color: white;
  margin-top: 0.6rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.cta-strip-v2 p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.7rem;
  font-size: 1.06rem;
  font-weight: 750;
}

.cta-strip-v2 .cta-row {
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-strip-v2 .button {
  background: white;
  color: var(--primary-dark);
  font-weight: 900;
  border-radius: 999px;
  min-height: 50px;
  padding-inline: 1.35rem;
}

.cta-strip-v2 .button:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.cta-strip-v2 .button.ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: white;
}

.cta-strip-v2 .button.ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

/* ── Scroll-animate ── */
@media (prefers-reduced-motion: no-preference) {
  .animate-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.52s ease, transform 0.52s ease;
  }

  .animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .path-cards > :nth-child(1)         { transition-delay: 0ms; }
  .path-cards > :nth-child(2)         { transition-delay: 85ms; }
  .path-cards > :nth-child(3)         { transition-delay: 170ms; }
  .path-cards > :nth-child(4)         { transition-delay: 255ms; }
  .why-grid-four > :nth-child(1),
  .info-grid > :nth-child(1)          { transition-delay: 0ms; }
  .why-grid-four > :nth-child(2),
  .info-grid > :nth-child(2)          { transition-delay: 85ms; }
  .why-grid-four > :nth-child(3),
  .info-grid > :nth-child(3)          { transition-delay: 170ms; }
  .why-grid-four > :nth-child(4)      { transition-delay: 255ms; }
}

/* ── Pricing cards upgrade ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 24px;
  padding: 1.7rem;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #f3fcfb 0%, #eef8f7 100%);
  border-color: rgba(15, 118, 110, 0.26);
}

.pricing-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  background: var(--accent);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.pricing-card h2 { font-size: 1.45rem; color: var(--text); margin-bottom: 0.65rem; }
.pricing-card p  { color: var(--muted); font-size: 0.94rem; line-height: 1.65; margin-bottom: 1.1rem; }

/* ── Contact info blocks ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}

.contact-info-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.contact-info-block h4 {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  margin: 0;
}

.contact-info-block a:hover { color: var(--primary-dark); }


/* ============================================================
   PREMIUM UPGRADE v4 — MedShapeFL Visual Excellence
   ============================================================ */

/* Warm accent color */
:root { --cream: #fdf8f1; }

/* ── Hero visual wrap soft radial atmosphere ring ── */
.hero-visual-wrap {
  isolation: isolate;
}
.hero-visual-wrap::before {
  content: "";
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.07) 0%, transparent 58%);
  pointer-events: none;
  z-index: -1;
}

/* ── Care card consultation activity indicator ── */
.care-card-activity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(135deg, rgba(224, 247, 244, 0.65), rgba(238, 247, 251, 0.45));
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 16px;
  margin-top: 0.9rem;
}

.care-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.care-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: linear-gradient(135deg, var(--primary), #2f7dbd);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.care-avatar:not(:first-child) { margin-left: -10px; }
.care-avatar:nth-child(2) { background: linear-gradient(135deg, #2f7dbd, #55a5c8); }
.care-avatar:nth-child(3) { background: linear-gradient(135deg, #4ea8c4, var(--primary)); }

.care-activity-info {
  display: grid;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.care-activity-label {
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.care-activity-status {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.74rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-green 2.5s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.38); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

/* ── Section background palette improvements ── */
.why-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f6fbfa 100%);
}

.path-section {
  background: linear-gradient(180deg, #eef9f8 0%, #e8f6f5 55%, #edf7fb 100%);
}

#pricing {
  background: var(--cream);
}

/* ── Medical consultation visual section ── */
.medical-visual-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.medical-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.medical-visual-image {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.medical-visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medical-visual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(180deg, transparent 58%, rgba(14, 37, 46, 0.22) 100%);
  pointer-events: none;
}

@media (min-width: 860px) {
  .medical-visual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── CTA strip v2 ambient glow overlays ── */
.cta-strip-v2 {
  position: relative;
  overflow: hidden;
}

.cta-strip-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 50%, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(ellipse at 93% 44%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

/* ── GLP-1 homepage card background lift ── */
#glp1-evaluation .card {
  background: linear-gradient(145deg, #ffffff, rgba(238, 248, 247, 0.85));
}

/* ── Page hero v2 ambient decoration ── */
.page-hero-v2::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.1), transparent 70%);
  pointer-events: none;
}

/* ── Compliance strip icon ── */
.compliance-strip {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.compliance-strip::before {
  content: "⚕";
  font-size: 1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
  opacity: 0.75;
  padding-top: 0.04rem;
  line-height: 1.68;
}

/* ── FAQ open state summary color ── */
.faq-list-v2 details[open] summary {
  color: var(--primary-dark);
}

/* ── Pricing featured card inner glow ── */
.pricing-card.featured {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.1), transparent 68%);
  pointer-events: none;
}

/* ── Contact info block hover ── */
.contact-info-block {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-info-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

/* ── Info icon gradient background ── */
.info-icon {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.13), rgba(47, 125, 189, 0.1));
}

/* ── Real-life illustration text scale ── */
.ill-text strong { font-size: 0.9rem; }
.ill-text span   { font-size: 0.8rem; }

/* ── Check-list item check color ── */
.check-list li::before {
  background: var(--primary);
  width: 10px;
  height: 10px;
}

/* ── Premium feature card number badge ── */
.feature-mark {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ── Conversion strip eyebrow ── */
.conversion-strip .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.3rem 0.68rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

/* ── Better hero actions gap on mid screens ── */
@media (min-width: 480px) and (max-width: 860px) {
  .pro-hero .button {
    min-height: 50px;
    padding-inline: 1.1rem;
  }
}

/* ── Mobile care card activity compaction ── */
@media (max-width: 560px) {
  .care-card-activity {
    padding: 0.55rem 0.75rem;
    gap: 0.55rem;
  }

  .care-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  .care-activity-label { font-size: 0.8rem; }
  .care-activity-status { font-size: 0.7rem; }
  .status-pulse { width: 7px; height: 7px; }

  .medical-visual-image {
    border-radius: 18px;
    aspect-ratio: 3 / 2;
  }

  .medical-visual-section { padding: 3.5rem 0; }
  .why-section { padding-bottom: 2.5rem; }
}

/* ── Footer directions button explicit sizing ── */
.directions-button {
  font-size: 0.88rem;
  min-height: 40px;
  padding: 0.6rem 0.9rem;
}

/* ── Inner page section soft gradient alternative ── */
.section-warm {
  background: linear-gradient(180deg, var(--cream) 0%, #f6fbfa 100%);
}

/* ── Utility: no-overflow guard for all sections ── */
.pro-hero,
.path-section,
.why-section,
.real-life-section,
.local-section,
.cta-strip-v2,
.medical-visual-section {
  overflow: hidden;
}


/* ============================================================
   HERO VISUAL ENHANCEMENT v5 — Make it alive
   ============================================================ */

/* ── Richer hero background radials ── */
.pro-hero::before {
  background:
    radial-gradient(circle at 82% 14%, rgba(15, 118, 110, 0.22), transparent 32%),
    radial-gradient(circle at 16% 80%, rgba(47, 125, 189, 0.18), transparent 36%),
    radial-gradient(ellipse at 52% 60%, rgba(253, 248, 241, 0.45), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

/* ── Hero atmosphere shapes — make visible ── */
.hero-atmosphere span:nth-child(1) {
  background: rgba(15, 118, 110, 0.07);
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow: 0 20px 60px rgba(15, 118, 110, 0.1);
}

.hero-atmosphere span:nth-child(2) {
  background: rgba(47, 125, 189, 0.07);
  border-color: rgba(47, 125, 189, 0.2);
  box-shadow: 0 12px 38px rgba(47, 125, 189, 0.1);
}

/* ── Primary CTA shimmer animation ── */
.pro-hero .button:not(.secondary) {
  background: linear-gradient(135deg, var(--primary) 0%, #178fa8 100%);
  box-shadow:
    0 10px 28px rgba(15, 118, 110, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}

.pro-hero .button:not(.secondary)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: cta-shimmer 3.5s ease-in-out infinite;
}

@keyframes cta-shimmer {
  0% { left: -120%; }
  42%, 100% { left: 130%; }
}

/* ── Secondary hero button refinement ── */
.pro-hero .button.secondary {
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

/* ── Hero content entrance animation ── */
@media (prefers-reduced-motion: no-preference) {
  .pro-hero .eyebrow {
    animation: hero-rise 0.55s 0.05s ease both;
  }
  .pro-hero h1 {
    animation: hero-rise 0.65s 0.12s ease both;
  }
  .pro-hero .lead {
    animation: hero-rise 0.65s 0.2s ease both;
  }
  .pro-hero .hero-actions {
    animation: hero-rise 0.6s 0.28s ease both;
  }
  .pro-hero .hero-microcopy {
    animation: hero-rise 0.6s 0.35s ease both;
  }
  .pro-hero .hero-trust-grid {
    animation: hero-rise 0.65s 0.42s ease both;
  }
  .pro-hero .hero-visual-wrap {
    animation: hero-rise-right 0.75s 0.15s ease both;
  }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-rise-right {
  from { opacity: 0; transform: translateX(20px) translateY(8px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}

/* ── Care-path-card depth enhancement ── */
.care-path-card {
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

/* ── Hero trust grid — icon checkmarks ── */
.hero-trust-grid span {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--primary), #2f7dbd);
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.35);
}

/* ── Hero trust grid item glass polish ── */
.hero-trust-grid div {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  border-color: rgba(15, 118, 110, 0.16);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ── Floating phone card animated glow ── */
.floating-phone-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: float-in 0.8s 0.45s ease both;
}

.floating-phone-card:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.local-trust-card {
  animation: float-in 0.8s 0.55s ease both;
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pro-hero .eyebrow,
  .pro-hero h1,
  .pro-hero .lead,
  .pro-hero .hero-actions,
  .pro-hero .hero-microcopy,
  .pro-hero .hero-trust-grid,
  .pro-hero .hero-visual-wrap,
  .floating-phone-card,
  .local-trust-card {
    animation: none;
  }
}

/* ── Hero section minimum height on large screens ── */
@media (min-width: 860px) {
  .pro-hero {
    min-height: calc(100svh - 82px);
    display: grid;
    align-items: center;
  }
}


/* ── Page hero trust badge row (inner pages) ── */
.page-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
  align-items: center;
}

.page-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.3rem 0.72rem;
  border: 1px solid rgba(15, 118, 110, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  color: #2a4050;
  backdrop-filter: blur(8px);
}

.page-hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .page-hero-trust { gap: 0.45rem; }
  .page-hero-trust span { font-size: 0.78rem; padding: 0.28rem 0.6rem; }
}


/* ============================================================
   CLINIC HERO — Complete redesign v1
   Warm ivory / deep emerald / premium med-spa
   Replaces all previous hero approaches
   ============================================================ */

:root {
  --ivory:        #faf7f2;
  --ivory-mid:    #f4ede0;
  --emerald:      #0a5c52;
  --emerald-dark: #074940;
  --emerald-lt:   rgba(230, 244, 241, 0.9);
  --navy:         #1a2e3b;
  --navy-soft:    #3e5668;
  --warm-bd:      rgba(150, 118, 72, 0.22);
}

/* ── Full section wrapper ── */
.clinic-hero {
  background: linear-gradient(
    158deg,
    #faf7f2 0%,
    #f4eadc 36%,
    #edf3f1 70%,
    #f0f7f4 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 82px);
}

/* ── Content grid ── */
.clinic-hero-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

@media (min-width: 860px) {
  .clinic-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    padding: clamp(3.5rem, 7vh, 5.5rem) 0;
  }
}

/* ── Eyebrow pill ── */
.clinic-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.38rem 0.9rem;
  border: 1px solid rgba(10, 92, 82, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(10, 92, 82, 0.1);
}

.clinic-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

/* ── Headline ── */
.clinic-h1 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.95rem, 4.6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 600px;
}

/* ── Lead paragraph ── */
.clinic-lead {
  margin-top: 1.1rem;
  color: var(--navy-soft);
  font-size: clamp(0.97rem, 1.8vw, 1.1rem);
  line-height: 1.72;
  max-width: 560px;
}

/* ── CTA row ── */
.clinic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.82rem 1.55rem;
  border: none;
  border-radius: 999px;
  background: var(--emerald);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(10, 92, 82, 0.3);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  letter-spacing: 0.01em;
  font-family: inherit;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10, 92, 82, 0.38);
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.82rem 1.55rem;
  border: 1.5px solid rgba(26, 46, 59, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
  font-family: inherit;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--emerald);
  background: var(--emerald-lt);
  color: var(--emerald-dark);
}

/* ── Microcopy ── */
.clinic-microcopy {
  margin-top: 0.78rem;
  color: var(--navy-soft);
  font-size: 0.85rem;
  font-weight: 750;
}

/* ── Trust badges ── */
.clinic-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.52rem;
  margin-top: 1.4rem;
  max-width: 560px;
}

@media (min-width: 460px) {
  .clinic-badges { grid-template-columns: repeat(2, 1fr); }
}

.clinic-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.54rem 0.82rem;
  border: 1px solid var(--warm-bd);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 850;
  box-shadow: 0 2px 8px rgba(26, 46, 59, 0.05);
}

.clinic-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

/* ── Visual column wrapper ── */
.clinic-hero-visual {
  position: relative;
}

/* ── Image panel ── */
.clinic-image-panel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(26, 46, 59, 0.2),
    0 12px 32px rgba(26, 46, 59, 0.1);
  aspect-ratio: 3 / 4;
  background: var(--ivory-mid);
}

@media (min-width: 860px) {
  .clinic-image-panel {
    max-height: 620px;
    aspect-ratio: 3 / 4;
  }
}

.clinic-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Subtle image gradient for card readability */
.clinic-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 46, 59, 0.06) 0%,
    transparent 38%,
    rgba(26, 46, 59, 0.32) 100%
  );
  pointer-events: none;
}

/* ── Floating overlay cards ── */
.clinic-overlay-card {
  position: absolute;
  z-index: 2;
  padding: 0.72rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 36px rgba(26, 46, 59, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.95);
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

.clinic-overlay-top {
  top: 1.4rem;
  left: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.overlay-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(10, 92, 82, 0.2);
}

.clinic-overlay-bottom {
  bottom: 1.4rem;
  right: 1.2rem;
  display: grid;
  gap: 0.12rem;
  min-width: 180px;
}

.clinic-overlay-bottom strong {
  display: block;
  color: var(--navy-soft);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clinic-overlay-bottom > span {
  display: block;
  color: var(--emerald);
  font-size: 0.96rem;
  font-weight: 900;
}

/* ── Local line ── */
.clinic-local-line {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--navy-soft);
  font-weight: 800;
  text-align: center;
}

/* ── Mobile ── */
@media (max-width: 859px) {
  .clinic-hero { min-height: auto; }

  .clinic-image-panel {
    border-radius: 22px;
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }

  .clinic-overlay-top {
    font-size: 0.8rem;
    padding: 0.52rem 0.72rem;
    top: 0.9rem;
    left: 0.9rem;
    border-radius: 12px;
  }

  .clinic-overlay-bottom {
    bottom: 0.9rem;
    right: 0.9rem;
    border-radius: 12px;
    padding: 0.55rem 0.75rem;
    min-width: 160px;
  }

  .clinic-overlay-bottom strong { font-size: 0.68rem; }
  .clinic-overlay-bottom > span { font-size: 0.88rem; }
}

@media (max-width: 560px) {
  .clinic-hero-inner { padding: 1.8rem 0 2.2rem; }

  .clinic-h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    letter-spacing: -0.015em;
    max-width: none;
  }

  .clinic-lead {
    font-size: 0.96rem;
    max-width: none;
  }

  .clinic-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 48px;
    font-size: 0.92rem;
    padding: 0.7rem 0.75rem;
    justify-content: center;
  }

  .clinic-badges { max-width: none; }

  .clinic-image-panel {
    border-radius: 18px;
    aspect-ratio: 3 / 2;
    max-height: 240px;
  }

  .clinic-local-line {
    font-size: 0.78rem;
    text-align: left;
  }
}


/* ============================================================
   WARM EDITORIAL REDESIGN — MedShapeFL v Final
   Palette: warm ivory / deep emerald / dark navy
   ============================================================ */

/* ── 1. Global palette override ── */
:root {
  --primary:        #0f6e61;
  --primary-dark:   #0a4d43;
  --accent:         #e2f2ef;
  --soft:           #f2e9dc;
  --soft-blue:      #efe9df;
  --border:         #ddd0bb;
  --line:           #ddd0bb;
  --muted:          #4a5e6d;
  --text:           #141f2a;
  --ink:            #141f2a;
  --background:     #f9f6f1;
  /* warm editorial additions */
  --warm-bg:        #f9f6f1;
  --warm-card:      #f3ece0;
  --warm-beige:     #e9dfc9;
  --em:             #0f6e61;
  --em-dk:          #0a4d43;
  --em-lt:          #e2f2ef;
  --ink-900:        #141f2a;
  --ink-60:         #4a5e6d;
  --warm-shadow:    rgba(20, 31, 42, 0.1);
}

/* ── 2. New editorial hero — mhero ── */

.mhero {
  background: var(--warm-bg);
  overflow: hidden;
}

/* ── Band: headline + sub + CTAs ── */
.mhero-band {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.25rem, 2.5vw, 2rem);
}

.mhero-band-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 860px) {
  .mhero-band-inner {
    grid-template-columns: 1fr 234px;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.mhero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--em);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(15, 110, 97, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.mhero-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--em);
  flex-shrink: 0;
}

.mhero-headline {
  margin: 0;
  font-size: clamp(2.3rem, 5.2vw, 3.85rem);
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1.06;
  letter-spacing: -0.032em;
  max-width: 820px;
}

.mhero-sub {
  margin: 1rem 0 0;
  color: var(--ink-60);
  font-size: clamp(0.97rem, 1.75vw, 1.1rem);
  line-height: 1.7;
  max-width: 660px;
}

/* ── CTA column ── */
.mhero-cta-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mhero-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.88rem 1.6rem;
  border: none;
  border-radius: 999px;
  background: var(--em);
  color: #fff;
  font-weight: 900;
  font-size: 0.97rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(15, 110, 97, 0.3);
  transition: background 150ms ease, transform 140ms ease;
  font-family: inherit;
  cursor: pointer;
}

.mhero-btn-cta:hover,
.mhero-btn-cta:focus-visible {
  background: var(--em-dk);
  transform: translateY(-1px);
}

.mhero-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.88rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-900);
  font-weight: 900;
  font-size: 0.97rem;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 150ms ease, background 150ms ease;
  font-family: inherit;
  cursor: pointer;
}

.mhero-btn-ghost:hover,
.mhero-btn-ghost:focus-visible {
  border-color: var(--em);
  background: #fff;
  color: var(--em-dk);
}

.mhero-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-60);
  font-weight: 750;
  margin: 0;
  line-height: 1.5;
}

/* ── Bento tile grid ── */
.mhero-grid-wrap {
  padding: 0;
}

.mhero-grid {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Tablet: image + stacked tiles */
@media (min-width: 600px) {
  .mhero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 400px;
  }
  .mhero-img-tile { grid-column: 1; grid-row: 1 / 3; }
  .mhero-tile-a   { grid-column: 2; grid-row: 1; }
  .mhero-tile-b   { grid-column: 2; grid-row: 2; }
  .mhero-tile-c   { display: none; }
}

/* Desktop: 3-col bento */
@media (min-width: 1000px) {
  .mhero-grid {
    grid-template-columns: 1.25fr 1fr 0.82fr;
    grid-template-rows: 242px 218px;
    height: auto;
  }
  .mhero-img-tile  { grid-column: 1; grid-row: 1 / 3; }
  .mhero-tile-a    { grid-column: 2 / 4; grid-row: 1; }
  .mhero-tile-b    { grid-column: 2; grid-row: 2; }
  .mhero-tile-c    { display: flex; grid-column: 3; grid-row: 2; }
}

/* ── Base tile ── */
.mhero-tile {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* ── Image tile ── */
.mhero-img-tile {
  background: var(--warm-card);
  aspect-ratio: 3 / 2;
}

@media (min-width: 600px) {
  .mhero-img-tile { aspect-ratio: auto; }
}

.mhero-img-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Tile A: eligibility ── */
.mhero-tile-a {
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(20, 31, 42, 0.06);
}

.mhero-tile-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--em-lt);
  border: 1px solid rgba(15, 110, 97, 0.2);
  flex-shrink: 0;
}

.mhero-tile-a h3 {
  margin: 0.85rem 0 0.45rem;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1.2;
}

.mhero-tile-a p {
  margin: 0;
  color: var(--ink-60);
  font-size: 0.88rem;
  line-height: 1.62;
  flex: 1;
}

.mhero-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-top: 0.85rem;
  color: var(--em);
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 140ms;
}

.mhero-tile-link:hover { color: var(--em-dk); }
.mhero-tile-link::after { content: "→"; }

/* ── Tile B: phone ── */
.mhero-tile-b {
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
  background: var(--em);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: background 150ms;
}

.mhero-tile-b:hover { background: var(--em-dk); }

.mhero-tile-kicker {
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.4rem;
}

.mhero-tile-b .mhero-tile-kicker { color: rgba(255, 255, 255, 0.62); }

.mhero-tile-phone {
  display: block;
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.18;
}

/* ── Tile C: local area ── */
.mhero-tile-c {
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
  background: var(--warm-beige);
  border: 1px solid rgba(150, 115, 65, 0.18);
  flex-direction: column;
  justify-content: flex-end;
}

.mhero-tile-c .mhero-tile-kicker { color: var(--ink-60); }

.mhero-tile-c p {
  margin: 0;
  color: var(--ink-900);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.52;
}

/* ── Trust strip ── */
.mhero-trust {
  padding: 1.35rem 0 2.5rem;
}

.mhero-trust-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
}

.mhero-trust-inner span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--ink-60);
  font-weight: 800;
}

.mhero-trust-inner span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--em);
  flex-shrink: 0;
}

/* ── Mobile hero ── */
@media (max-width: 599px) {
  .mhero-band { padding: 1.75rem 0 1.25rem; }

  .mhero-cta-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .mhero-btn-cta,
  .mhero-btn-ghost {
    flex: 1;
    min-height: 48px;
    font-size: 0.92rem;
    padding: 0.72rem 0.9rem;
  }

  .mhero-tile { border-radius: 16px; }
  .mhero-img-tile { aspect-ratio: 4 / 3; max-height: 260px; }
  .mhero-trust { padding: 1rem 0 1.75rem; }
  .mhero-trust-inner { gap: 0.45rem 1.25rem; }
}

/* ── 3. Section backgrounds — warm editorial ── */

/* path section */
.path-section {
  background: linear-gradient(180deg, #f2e9dc 0%, #eae0ce 55%, #eee8da 100%);
}

/* why section */
.why-section {
  background: var(--warm-bg);
}

/* local section — deep emerald dark */
.local-section {
  background: linear-gradient(155deg, #0a2e28 0%, #0e3a30 58%, #092824 100%);
}

/* CTA strip — deep emerald gradient */
.cta-strip-v2 {
  background: linear-gradient(135deg, #0f6e61 0%, #0a4d43 100%);
}

/* Eligibility form section */
.eligibility-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(15, 110, 97, 0.1), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(15, 110, 97, 0.08), transparent 32%),
    linear-gradient(145deg, #f6f1ea 0%, #eee8dc 52%, #ede9e0 100%);
}

/* Footer — dark emerald */
.site-footer {
  background: linear-gradient(155deg, #0a2c26 0%, #0c3228 100%);
}

/* generic soft sections inherit --soft warm cream */
.section.soft { background: var(--soft); }
.section.blue { background: var(--soft-blue); }

/* pricing section on homepage */
#pricing { background: var(--warm-bg); }

/* conversion strip card */
.strip-inner {
  background:
    radial-gradient(circle at 90% 18%, rgba(15, 110, 97, 0.12), transparent 28%),
    linear-gradient(135deg, #f6f1ea, #ede8da 58%, #f4eddf);
}

/* Medical visual section */
.medical-visual-section { background: #fff; }

/* real life section */
.real-life-section {
  background: linear-gradient(145deg, #f6f1ea 0%, #ede8da 55%, #f2ece0 100%);
}

/* GLP-1 homepage soft override */
#glp1-evaluation { background: var(--soft); }
#glp1-evaluation .card {
  background: linear-gradient(145deg, #fff, rgba(242, 233, 220, 0.7));
}

/* ── 4. Component updates for warm palette ── */

/* Card borders warm */
.card {
  border-color: var(--border);
}

/* Path cards */
.path-card {
  border-color: rgba(15, 110, 97, 0.14);
}

.path-icon {
  background: linear-gradient(135deg, var(--em) 0%, #2a8a7e 100%);
}

/* Premium feature cards */
.premium-feature-card {
  border-color: rgba(15, 110, 97, 0.14);
}

.feature-mark {
  background: var(--em-lt);
  color: var(--em-dk);
}

/* Info cards */
.info-icon {
  background: linear-gradient(135deg, rgba(15, 110, 97, 0.14), rgba(15, 110, 97, 0.08));
}

/* FAQ open */
.faq-list-v2 details[open] {
  border-color: rgba(15, 110, 97, 0.3);
  background: rgba(226, 242, 239, 0.2);
}

.faq-list-v2 details[open] summary { color: var(--em-dk); }

.faq-list-v2 summary::after {
  background: var(--soft);
  color: var(--em);
}

.faq-list-v2 details[open] summary::after {
  background: var(--em-lt);
}

/* Compliance strip */
.compliance-strip::before {
  color: var(--em-dk);
}

/* Local area tags */
.local-area-tag::before {
  background: var(--em);
}

/* Care path steps on homepage path section */
.care-path-steps span {
  background: linear-gradient(135deg, var(--em), #2a8a7e);
}

/* Scroll animate still works */
.animate-up { opacity: 0; transform: translateY(22px); transition: opacity 0.52s ease, transform 0.52s ease; }
.animate-up.in-view { opacity: 1; transform: translateY(0); }

/* Header scrolled state — warm shadow */
.site-header.is-scrolled {
  border-bottom-color: rgba(15, 110, 97, 0.16);
  box-shadow: 0 10px 28px rgba(20, 31, 42, 0.08);
}

/* ── 5. Misc cleanup ── */

/* Directions button in footer */
.directions-button {
  border-color: rgba(226, 242, 239, 0.4);
  background: rgba(226, 242, 239, 0.1);
  color: #fff;
}

.directions-button:hover {
  background: rgba(226, 242, 239, 0.18);
  border-color: rgba(226, 242, 239, 0.7);
}

/* Check-list bullet color */
.check-list li::before,
.feature-list li::before {
  background: var(--em);
}

/* step-number circles */
.step-number {
  background: var(--soft);
  color: var(--em-dk);
}

/* Local section call button */
.local-cta .button {
  background: var(--em);
}

/* Page hero v2 trust badges */
.page-hero-trust span::before {
  background: var(--em);
}

/* ill-dot colors */
.ill-dot     { background: linear-gradient(135deg, var(--em), #2a8a7e); }
.ill-dot.alt  { background: linear-gradient(135deg, #2a8a7e, #5aae75); }
.ill-dot.alt2 { background: linear-gradient(135deg, #5aae75, var(--em)); }

/* General button fallback */
.button { background: var(--em); }
.button:hover { background: var(--em-dk); }

/* Eyebrow dots */
.pro-hero .eyebrow::before,
.page-hero-v2 .eyebrow::before { background: var(--em); }


/* ── Responsible path section — premium card stack, no image ── */
.resp-path-section {
  background: var(--warm-bg);
}

.resp-path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .resp-path-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

/* Card stack */
.care-stack {
  display: grid;
  gap: 0.7rem;
}

.care-stack-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 1rem;
  padding: 1.1rem 1.2rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  align-items: start;
  box-shadow: 0 4px 14px rgba(20, 31, 42, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.care-stack-item:hover {
  border-color: rgba(15, 110, 97, 0.3);
  box-shadow: 0 10px 28px rgba(20, 31, 42, 0.1);
  transform: translateY(-2px);
}

.care-stack-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--em), #2a8a7e);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.88rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 110, 97, 0.26);
}

.care-stack-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--ink-900);
  margin: 0.15rem 0 0.38rem;
  line-height: 1.2;
}

.care-stack-desc {
  font-size: 0.88rem;
  color: var(--ink-60);
  margin: 0;
  line-height: 1.62;
}


/* ============================================================
   VISUAL RICHNESS UPGRADE — editorial cards, CSS icons, portal
   ============================================================ */

/* ── 1. Treatment Journey Section ── */
.journey-section {
  background: linear-gradient(180deg, var(--warm-card) 0%, #e8dfcc 100%);
  padding: 4.5rem 0;
  overflow: hidden;
}

.journey-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px)  { .journey-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .journey-cards { grid-template-columns: repeat(4, 1fr); } }

.journey-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 6px 22px rgba(20, 31, 42, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  display: flex;
  flex-direction: column;
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 31, 42, 0.12);
  border-color: rgba(15, 110, 97, 0.3);
}

/* Alternating warm card backgrounds */
.journey-card:nth-child(even) {
  background: var(--warm-bg);
}

.journey-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--em), #2a8a7e);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(15, 110, 97, 0.28);
  position: relative;
  overflow: visible;
}

.journey-step {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--em);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.journey-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink-900);
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.journey-card p {
  color: var(--ink-60);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ── CSS icons inside journey icon circles ── */
.jicon {
  display: block;
  position: relative;
}

/* Clipboard: eligibility */
.jicon-eligibility {
  width: 18px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}
.jicon-eligibility::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 5px;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  background: var(--em);
}
.jicon-eligibility::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  right: 3px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.5), 0 8px 0 rgba(255, 255, 255, 0.4);
}

/* Medical cross: provider review */
.jicon-review {
  width: 22px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}
.jicon-review::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 22px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

/* Speech bubble: consultation */
.jicon-consult {
  width: 22px;
  height: 15px;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 7px;
  margin-top: -2px;
}
.jicon-consult::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 5px;
  border-top: 6px solid rgba(255, 255, 255, 0.9);
  border-right: 5px solid transparent;
  border-left: 3px solid transparent;
}

/* Circular arrow: follow-up */
.jicon-followup {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(135deg);
}
.jicon-followup::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid rgba(255, 255, 255, 0.9);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: rotate(-135deg);
}

/* ── 2. What Makes Different Section ── */
.diff-section {
  background: var(--warm-bg);
  padding: 4.5rem 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 860px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}

.diff-card {
  border-radius: 26px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  border: 1px solid var(--border);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(20, 31, 42, 0.12);
}

.diff-card-a { background: var(--warm-card); }
.diff-card-b { background: #ffffff; }
.diff-card-c {
  background: linear-gradient(145deg, var(--em-lt), #f4faf9);
  border-color: rgba(15, 110, 97, 0.18);
}

.diff-num {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 900;
  color: rgba(15, 110, 97, 0.14);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  user-select: none;
}

.diff-card-c .diff-num { color: rgba(15, 110, 97, 0.22); }

.diff-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  font-weight: 900;
  color: var(--ink-900);
  margin: 0 0 0.72rem;
  line-height: 1.15;
}

.diff-card p {
  color: var(--ink-60);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.diff-accent-bar {
  height: 3px;
  width: 36px;
  background: var(--em);
  border-radius: 999px;
  margin-top: 1.4rem;
}

/* ── 3. CSS Care Portal Mockup ── */
.care-portal {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 24px 64px rgba(20, 31, 42, 0.14),
    0 4px 12px rgba(20, 31, 42, 0.06);
}

.care-portal-header {
  padding: 0.95rem 1.2rem;
  background: var(--em);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.care-portal-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.9rem;
}

.care-portal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  animation: pulse-green 2.5s ease-in-out infinite;
}

.care-portal-badge {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.care-portal-body {
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  background: var(--warm-bg);
}

.care-notif {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding: 0.88rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(20, 31, 42, 0.04);
}

.care-notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.care-notif-icon span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.care-notif-done   .care-notif-icon { background: rgba(15, 110, 97, 0.1); }
.care-notif-progress .care-notif-icon { background: rgba(217, 119, 6, 0.1); }
.care-notif-required .care-notif-icon { background: rgba(20, 31, 42, 0.08); }

.care-notif-done   .care-notif-icon span { background: var(--em); }
.care-notif-progress .care-notif-icon span { background: #d97706; }
.care-notif-required .care-notif-icon span { background: var(--ink-60); }

.care-notif-text { flex: 1; min-width: 0; }

.care-notif-text strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 0.18rem;
  line-height: 1.2;
}

.care-notif-text span {
  display: block;
  color: var(--ink-60);
  font-size: 0.78rem;
  line-height: 1.48;
}

.care-notif-tag {
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.care-tag-done     { background: var(--em-lt); color: var(--em-dk); }
.care-tag-progress { background: rgba(217, 119, 6, 0.12); color: #92400e; }
.care-tag-required { background: rgba(20, 31, 42, 0.08); color: var(--ink-60); }

.care-portal-footer {
  padding: 0.72rem 1.2rem;
  background: var(--warm-card);
  font-size: 0.76rem;
  color: var(--ink-60);
  font-weight: 750;
  border-top: 1px solid var(--border);
}

/* ── 4. Trust & Safety Strip ── */
.trust-strip {
  background: var(--warm-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}

.trust-strip-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 600px)  { .trust-strip-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .trust-strip-inner { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(20, 31, 42, 0.04);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--em-lt);
  border: 1px solid rgba(15, 110, 97, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ── Trust icon CSS shapes ── */
.ti-check {
  width: 14px;
  height: 14px;
  border: 2.5px solid var(--em);
  border-radius: 50%;
  position: relative;
}
.ti-check::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 4px;
  border-left: 2px solid var(--em);
  border-bottom: 2px solid var(--em);
  transform: rotate(-45deg);
}

/* Tilde/wave for "results vary" */
.ti-vary {
  display: block;
  width: 16px;
  height: 6px;
  position: relative;
}
.ti-vary::before,
.ti-vary::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 6px;
  border: 2px solid var(--em);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.ti-vary::before { left: 0; top: 0; }
.ti-vary::after  { right: 0; top: 2px; transform: rotate(180deg); }

/* Lock for private */
.ti-lock {
  width: 11px;
  height: 12px;
  border: 2.5px solid var(--em);
  border-radius: 2px;
  position: relative;
  margin-top: 3px;
}
.ti-lock::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 5px;
  border: 2.5px solid var(--em);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.ti-lock::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--em);
}

/* Globe for languages */
.ti-lang {
  width: 14px;
  height: 14px;
  border: 2px solid var(--em);
  border-radius: 50%;
  position: relative;
}
.ti-lang::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  border-left: 1.5px solid var(--em);
  border-right: 1.5px solid var(--em);
  border-radius: 50%;
}
.ti-lang::after {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1.5px;
  background: var(--em);
  transform: translateY(-50%);
}

.trust-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1.2;
  margin-bottom: 0.16rem;
}

.trust-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-60);
  font-weight: 750;
  line-height: 1.4;
}

/* ── Mobile adjustments for new sections ── */
@media (max-width: 560px) {
  .journey-section { padding: 3rem 0; }
  .diff-section     { padding: 3rem 0; }
  .trust-strip      { padding: 1.75rem 0; }
  .diff-card        { min-height: 0; border-radius: 20px; }
  .journey-card     { border-radius: 18px; }
  .care-portal      { border-radius: 18px; }
}


/* ============================================================
   MEDSHAPEFL GUIDE SECTION + PREMIUM FOOTER
   ============================================================ */

/* ── 1. MedShapeFL Guide Section ── */
.guide-section {
  background: var(--warm-bg);
  padding: 4.5rem 0;
  overflow: hidden;
}

.guide-wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.guide-intro {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.guide-intro h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--ink-900);
  margin: 0.65rem 0 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.guide-intro p {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

/* 5-card responsive grid */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  /* 6-column base: first 3 span 2 each, last 2 span 3 each */
  .guide-grid { grid-template-columns: repeat(6, 1fr); }
  .guide-card:nth-child(1),
  .guide-card:nth-child(2),
  .guide-card:nth-child(3) { grid-column: span 2; }
  .guide-card:nth-child(4),
  .guide-card:nth-child(5) { grid-column: span 3; }
}

.guide-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(20, 31, 42, 0.11);
}

/* ── CSS visual blocks — distinct per card ── */
.guide-visual {
  height: 176px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Card 1: warm amber — overlapping circles (consultation) */
.guide-vis-1 {
  background: linear-gradient(140deg, #f3e7d0 0%, #ead9b8 100%);
}
.guide-vis-1::before {
  content: "";
  position: absolute;
  width: 190px; height: 190px;
  border-radius: 50%;
  border: 34px solid rgba(15, 110, 97, 0.1);
  top: -55px; right: -55px;
}
.guide-vis-1::after {
  content: "";
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 22px solid rgba(15, 110, 97, 0.08);
  bottom: -26px; left: 22px;
}

/* Card 2: sage dot grid — GLP-1 questions */
.guide-vis-2 {
  background: linear-gradient(140deg, #e5f1ed 0%, #d5e9e3 100%);
}
.guide-vis-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 110, 97, 0.22) 2px, transparent 2px);
  background-size: 22px 22px;
}
.guide-vis-2::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.14);
}

/* Card 3: deep emerald — diagonal stripes (authority) */
.guide-vis-3 {
  background: linear-gradient(140deg, var(--em) 0%, var(--em-dk) 100%);
}
.guide-vis-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 2px,
    transparent 2px, transparent 18px
  );
}
.guide-vis-3::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.06),
    0 0 0 28px rgba(255, 255, 255, 0.03);
}

/* Card 4: soft blue-teal — concentric frames (online/screen) */
.guide-vis-4 {
  background: linear-gradient(140deg, #dff0f5 0%, #cfe8ef 100%);
}
.guide-vis-4::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 124px; height: 82px;
  border: 14px solid rgba(47, 125, 189, 0.14);
  border-radius: 14px;
}
.guide-vis-4::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 48px;
  border: 11px solid rgba(47, 125, 189, 0.26);
  border-radius: 8px;
}

/* Card 5: warm blush — radial glow (support/care) */
.guide-vis-5 {
  background: linear-gradient(140deg, #fdf0e0 0%, #f8e5c8 100%);
}
.guide-vis-5::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 110, 97, 0.1) 0%, transparent 68%);
}
.guide-vis-5::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 110, 97, 0.18) 0%, transparent 68%);
}

/* ── Card text body ── */
.guide-body {
  padding: 1.3rem 1.3rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.guide-card h3 {
  font-size: clamp(0.95rem, 1.7vw, 1.06rem);
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1.28;
  margin: 0 0 0.52rem;
}

.guide-card p {
  font-size: 0.85rem;
  color: var(--ink-60);
  line-height: 1.62;
  margin: 0;
  flex: 1;
}

.guide-read {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 1rem;
  color: var(--em);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  transition: gap 140ms ease, color 140ms ease;
  align-self: flex-start;
}

.guide-read:hover { gap: 0.55rem; color: var(--em-dk); }

@media (max-width: 560px) {
  .guide-visual { height: 144px; }
  .guide-card   { border-radius: 18px; }
  .guide-section { padding: 3rem 0; }
}

/* ── 2. Premium MSF Footer ── */
.msf-footer {
  background: linear-gradient(160deg, #092c26 0%, #0d3830 55%, #0b3028 100%);
  color: rgba(245, 240, 228, 0.78);
}

.msf-footer-top {
  padding: 4rem 0 2.75rem;
}

.msf-footer-cols {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .msf-footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .msf-footer-cols {
    grid-template-columns: 1.55fr 1fr 1.1fr 1.25fr;
    gap: 3rem;
    align-items: start;
  }
}

.msf-wordmark {
  font-size: 1.42rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.012em;
  line-height: 1;
}

.msf-tm {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 0.04rem;
  font-weight: 900;
}

.msf-tagline {
  font-size: 0.75rem;
  color: rgba(245, 240, 228, 0.44);
  font-weight: 750;
  margin: 0.3rem 0 0.95rem;
  letter-spacing: 0.02em;
}

.msf-desc {
  font-size: 0.85rem;
  color: rgba(245, 240, 228, 0.55);
  line-height: 1.68;
  margin: 0;
}

.msf-footer-heading {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.36);
  margin: 0 0 0.92rem;
}

.msf-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.msf-footer-nav a {
  color: rgba(245, 240, 228, 0.76);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 140ms;
}

.msf-footer-nav a:hover { color: #ffffff; }

.msf-footer-address {
  font-style: normal;
  display: grid;
  gap: 0.42rem;
}

.msf-footer-address a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: opacity 140ms;
}

.msf-footer-address a:hover { opacity: 0.82; }

.msf-footer-address span {
  color: rgba(245, 240, 228, 0.52);
  font-size: 0.86rem;
  line-height: 1.55;
}

.msf-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.88rem;
  color: rgba(226, 242, 239, 0.76);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 140ms;
}

.msf-directions:hover { color: #ffffff; }

.msf-footer-legal {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: rgba(245, 240, 228, 0.36);
  line-height: 1.65;
}

.msf-footer-emergency {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 850;
  color: rgba(245, 240, 228, 0.32);
}

.msf-footer-bottom {
  border-top: 1px solid rgba(245, 240, 228, 0.08);
  padding: 1.2rem 0 6rem;
}

@media (min-width: 720px) {
  .msf-footer-bottom { padding-bottom: 2rem; }
}

.msf-footer-binner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1.5rem;
  align-items: center;
}

.msf-footer-binner p {
  font-size: 0.74rem;
  color: rgba(245, 240, 228, 0.26);
  margin: 0;
}


/* ============================================================
   REAL PHOTO IMAGE PANELS
   ============================================================ */

/* ── Hero image object position — show doctor face & patient ── */
.mhero-img-tile img {
  object-position: center 18%;
}

/* ── Resp-path: care plan image ── */
.resp-path-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 28px 72px rgba(20, 31, 42, 0.16),
    0 4px 12px rgba(20, 31, 42, 0.07);
  aspect-ratio: 4 / 3;
  background: var(--warm-card);
}

.resp-path-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 860px) {
  .resp-path-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 360px;
  }
}

@media (max-width: 559px) {
  .resp-path-image { border-radius: 20px; }
}

/* ── GLP-1 section: online consult image ── */
.glp1-image-panel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(20, 31, 42, 0.14);
  aspect-ratio: 4 / 3;
  background: var(--warm-card);
}

.glp1-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

@media (max-width: 559px) {
  .glp1-image-panel { border-radius: 18px; }
}

/* ── Real-life section: lifestyle image ── */
.real-life-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(20, 31, 42, 0.14);
  background: var(--warm-card);
  min-height: 300px;
}

@media (min-width: 860px) {
  /* stretch to match checklist column height */
  .real-life-grid { align-items: stretch; }
  .real-life-image { height: 100%; min-height: 400px; }
}

.real-life-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

@media (max-width: 559px) {
  .real-life-image { border-radius: 18px; min-height: 240px; }
}

/* ── Guide card: real photo visual ── */
.guide-vis-img {
  background: var(--warm-card);
  padding: 0;
}

.guide-vis-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Provider team: center the 3-column portrait grid */
.guide-card:nth-child(3) .guide-vis-img img {
  object-position: center center;
}

/* Community grid: full grid visible */
.guide-card:nth-child(5) .guide-vis-img img {
  object-position: center center;
}


/* Final guide image polish */
.guide-card .guide-visual {
  height: 188px;
  margin: 0.78rem 0.78rem 0;
  border: 1px solid rgba(15, 110, 97, 0.12);
  border-radius: 18px;
  background: var(--warm-card);
  box-shadow: 0 14px 34px rgba(20, 31, 42, 0.08);
}

.guide-card .guide-vis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.guide-card:nth-child(1) .guide-vis-img img,
.guide-card:nth-child(2) .guide-vis-img img,
.guide-card:nth-child(4) .guide-vis-img img {
  object-position: center center;
}

.guide-card:nth-child(3) .guide-vis-img img,
.guide-card:nth-child(5) .guide-vis-img img {
  object-position: center center;
}

@media (max-width: 560px) {
  .guide-card .guide-visual {
    height: 168px;
    margin: 0.65rem 0.65rem 0;
    border-radius: 16px;
  }
}


/* Launch state polish */
.launch-bar {
  position: relative;
  z-index: 60;
  display: flex;
  list-style: none;
  counter-reset: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  width: 100%;
  padding: 0.48rem 1rem;
  color: #14322d;
  background: linear-gradient(135deg, #fffaf0 0%, #f7ead5 45%, #e8f6f2 100%);
  border-bottom: 1px solid rgba(15, 110, 97, 0.16);
  box-shadow: 0 8px 26px rgba(20, 31, 42, 0.06);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.launch-bar::marker {
  content: "";
}

.launch-bar > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  max-width: 100%;
}

.launch-bar a {
  color: #0f6e61;
  font-weight: 900;
  text-decoration: none;
}

.launch-bar a:hover,
.launch-bar a:focus-visible {
  color: #0a4f46;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.7rem;
  padding: 0.42rem 0.82rem;
  border: 1px solid rgba(15, 110, 97, 0.2);
  border-radius: 999px;
  color: #0f6e61;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 12px 32px rgba(20, 31, 42, 0.08);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mhero-launch-note {
  margin: 0.15rem 0 0;
  padding: 0.72rem 0.84rem;
  border: 1px solid rgba(15, 110, 97, 0.14);
  border-radius: 16px;
  color: #31545e;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 12px 30px rgba(20, 31, 42, 0.06);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .launch-bar {
    padding: 0.52rem 0.85rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .launch-pill {
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
  }

  .mhero-launch-note {
    font-size: 0.8rem;
  }
}


/* Careers launch team section */
.careers-section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(circle at top left, rgba(15, 110, 97, 0.1), transparent 34rem),
    linear-gradient(135deg, #fffaf0 0%, #f7ead5 46%, #eef8f5 100%);
  border-top: 1px solid rgba(15, 110, 97, 0.12);
}

.careers-wrap {
  display: grid;
  gap: 1.45rem;
}

.careers-copy {
  max-width: 760px;
}

.careers-copy h2 {
  margin-bottom: 0.7rem;
}

.careers-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.career-interest-card {
  min-height: 148px;
  padding: 1.1rem;
  border: 1px solid rgba(15, 110, 97, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(20, 31, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.career-interest-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 110, 97, 0.28);
  box-shadow: 0 22px 52px rgba(20, 31, 42, 0.11);
}

.career-interest-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1.6rem;
  border-radius: 999px;
  color: #0f6e61;
  background: rgba(15, 110, 97, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.career-interest-card h3 {
  margin: 0;
  color: #141f2a;
  font-size: 1rem;
  line-height: 1.28;
}

.careers-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  border: 1px solid rgba(15, 110, 97, 0.18);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(20, 31, 42, 0.1);
}

.careers-cta-panel h3 {
  margin: 0 0 0.35rem;
  color: #141f2a;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
}

.careers-cta-panel p {
  margin: 0;
  color: #4a5e6d;
}

.careers-cta-panel a:not(.button) {
  color: #0f6e61;
  font-weight: 850;
}

.careers-note {
  max-width: 740px;
  margin-top: 0.55rem !important;
  font-size: 0.86rem;
}

.careers-cta-panel .button {
  flex: 0 0 auto;
  min-width: 132px;
}

@media (max-width: 980px) {
  .careers-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .careers-card-grid {
    grid-template-columns: 1fr;
  }

  .career-interest-card {
    min-height: 126px;
  }

  .career-interest-card span {
    margin-bottom: 1rem;
  }

  .careers-cta-panel {
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
  }

  .careers-cta-panel .button {
    width: 100%;
  }
}


/* Legal content pages */
.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin: 1.6rem 0 0.45rem;
  color: #141f2a;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #4a5e6d;
}

.legal-content a {
  color: #0f6e61;
  font-weight: 850;
}
