/*
Theme Name: Rand Medical Local Mobile Fix V2
Theme URI: https://localwp.com/
Author: Codex
Description: A custom one-page medical theme for Local, adapted from the provided JSX design.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: rand-medical-local
*/

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

:root {
  --navy-deep: #0f172a;
  --navy-base: #132554;
  --navy-card: #1c2f63;
  --navy-border: #35518f;
  --navy-hover: #223872;
  --navy-header: #142751;
  --teal: #ea580c;
  --teal-light: #f97316;
  --teal-dim: rgba(234, 88, 12, 0.12);
  --teal-glow: rgba(234, 88, 12, 0.26);
  --accent-green: #22c55e;
  --white: #ffffff;
  --off-white: #f3f7ff;
  --text-secondary: #c7d5f1;
  --text-muted: #91a6d8;
  --font: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--navy-base);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-border);
  border-radius: 3px;
}

.site-shell {
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 163, 193, 0.6);
  }

  50% {
    transform: scale(1.25);
    box-shadow: 0 0 0 5px rgba(0, 163, 193, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 163, 193, 0);
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-in-out infinite;
}

.btn-teal,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--teal);
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, transform 0.12s;
}

.btn-teal:hover,
.wp-block-button__link:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 11px 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.18s, background 0.18s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0;
  transition: color 0.18s;
}

.btn-ghost:hover {
  color: var(--teal-light);
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: rgba(10, 17, 40, 0.8);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.875rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.18s;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--text-muted);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--teal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-header);
  border-bottom: 1px solid var(--navy-border);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr auto;
  align-items: center;
  gap: 20px;
}

.site-header__panel {
  display: contents;
}

.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
  padding: 0;
}

.site-header__mobile-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-header__mobile-toggle-line + .site-header__mobile-toggle-line {
  margin-top: 4px;
}

.site-branding__mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
}

.site-branding__name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.site-branding__tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.site-branding__logo {
  display: block;
  width: auto;
  height: 86px;
  max-width: 100%;
  object-fit: contain;
}

.main-navigation {
  justify-self: center;
  width: 100%;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.main-navigation li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 5px;
  transition: color 0.18s, background 0.18s;
}

.main-navigation > ul > li > a {
  height: 100%;
  max-width: 132px;
  text-wrap: balance;
}

.main-navigation li:last-child a {
  white-space: nowrap;
}

.main-navigation a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.main-navigation .menu-item-has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
}

.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  min-width: 240px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: rgba(10, 17, 40, 0.98);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(2, 7, 20, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 25;
}

.main-navigation .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.main-navigation .sub-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: rgba(10, 17, 40, 0.98);
  border-top: 1px solid var(--navy-border);
  border-left: 1px solid var(--navy-border);
  transform: rotate(45deg);
}

.main-navigation .sub-menu li {
  width: 100%;
}

.main-navigation .sub-menu a {
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  text-align: left;
  white-space: normal;
}

.main-navigation .sub-menu a::after {
  display: none;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
}

.phone-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.18s;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding: 118px 0 72px;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: image-set(
    url("assets/images/hero-landing-wide.avif") type("image/avif"),
    url("assets/images/hero-landing-wide.png") type("image/png")
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: saturate(0.92) brightness(0.58);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 13, 31, 0.92) 0%, rgba(6, 13, 31, 0.76) 30%, rgba(6, 13, 31, 0.24) 60%, rgba(6, 13, 31, 0.8) 100%),
    linear-gradient(180deg, rgba(10, 17, 40, 0.18) 0%, rgba(10, 17, 40, 0.34) 36%, #0a1128 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
  margin-left: clamp(0px, 3vw, 40px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 163, 193, 0.1);
  border: 1px solid rgba(0, 163, 193, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 20px;
}

.hero__title span {
  color: var(--teal);
}

.hero__subtext {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.56;
  color: var(--off-white);
  margin: 0 0 32px;
  max-width: 600px;
  opacity: 0.88;
}

.hero__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metric {
  background: rgba(6, 13, 31, 0.72);
  border: 1px solid rgba(0, 163, 193, 0.18);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: left;
}

.hero-metric__value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-metric__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-metric--one-line .hero-metric__label {
  white-space: nowrap;
  font-size: 0.78rem;
}

.hero-stats-wrap {
  background: var(--navy-header);
  border-bottom: 1px solid var(--navy-border);
}

.hero-stats {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--navy-border);
}

.hero-stat {
  flex: 1;
  max-width: 220px;
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid var(--navy-border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}

.section-header__desc {
  font-size: 1rem;
  line-height: 1.56;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.service-card__icon,
.credential-card__icon,
.location-card__pin,
.contact-card__icon,
.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-glow);
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.875rem;
  line-height: 1.56;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-card__link:hover {
  color: var(--teal-light);
}

.service-card--compact {
  padding: 26px 24px;
}

.service-card--compact .service-card__title {
  margin-top: 0;
  margin-bottom: 8px;
}

.service-card--compact .service-card__desc {
  margin-bottom: 0;
}

.pathway-section,
.proof-section {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.92), rgba(10, 17, 40, 0.96));
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.pathway-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.pathway-card,
.proof-item,
.service-area-panel {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
}

.pathway-card {
  padding: 28px;
}

.pathway-card__title {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 16px 0 12px;
}

.pathway-card__desc {
  color: var(--text-secondary);
  line-height: 1.58;
  margin: 0 0 18px;
}

.pathway-card__list {
  margin: 0;
  padding-left: 18px;
}

.pathway-card__list li {
  color: var(--off-white);
  line-height: 1.7;
}

.credentials-section,
.locations-section,
.form-section {
  background: var(--navy-deep);
}

.credentials-section,
.form-section {
  border-top: 1px solid var(--navy-border);
}

.credentials-section {
  border-bottom: 1px solid var(--navy-border);
}

.credentials-grid,
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color 0.2s;
}

.credential-card:hover {
  border-color: rgba(0, 163, 193, 0.4);
}

.credential-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1.5px solid var(--teal-glow);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.credential-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.credential-card__text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.credentials-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.credentials-copy p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--off-white);
}

.check-list__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-glow);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.location-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 22px 20px;
  transition: border-color 0.18s, background 0.18s;
}

.location-card:hover {
  border-color: rgba(0, 163, 193, 0.5);
  background: var(--navy-hover);
}

.location-card__pin {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-glow);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.location-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.location-card__addr {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.location-card__phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}

.map-band {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.map-band__visual {
  width: 200px;
  height: 100px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 30%, var(--teal) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 55%, var(--teal) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 45%, var(--teal) 0 3px, transparent 4px),
    radial-gradient(circle at 65% 60%, var(--teal) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 40%, var(--teal) 0 3px, transparent 4px),
    radial-gradient(circle at 25% 70%, var(--teal) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 25%, var(--teal) 0 3px, transparent 4px),
    radial-gradient(circle at 75% 70%, var(--teal) 0 3px, transparent 4px),
    linear-gradient(rgba(0, 163, 193, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 193, 0.08) 1px, transparent 1px),
    var(--navy-base);
  background-size: auto, auto, auto, auto, auto, auto, auto, auto, 20px 20px, 20px 20px, auto;
  border: 1px solid var(--navy-border);
  position: relative;
  overflow: hidden;
}

.map-band__visual span {
  position: absolute;
  left: 10px;
  bottom: 8px;
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-band__copy h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 5px;
}

.map-band__copy p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.form-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 36px 32px;
}

.form-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-card__sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-notice {
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-notice--success {
  background: rgba(0, 163, 193, 0.12);
  border: 1px solid rgba(0, 163, 193, 0.35);
  color: var(--off-white);
}

.form-notice--error {
  background: rgba(173, 59, 90, 0.14);
  border: 1px solid rgba(223, 105, 137, 0.38);
  color: #ffd7e2;
}

.form-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.contact-copy h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px;
}

.contact-copy p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.58;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--navy-border);
}

.contact-card:last-of-type {
  border-bottom: none;
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-glow);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-card__value {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-card__value a {
  color: var(--white);
}

.contact-card__value a:hover {
  color: var(--teal-light);
}

.contact-highlight {
  margin-top: 28px;
  padding: 20px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
}

.contact-highlight__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.contact-highlight__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-area-panel {
  margin-top: 22px;
  padding: 20px 22px;
}

.service-area-panel__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-area-panel__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(141, 160, 194, 0.14);
}

.service-area-panel__row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service-area-panel__label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area-panel__value {
  color: var(--off-white);
  line-height: 1.6;
}

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 48px 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.site-footer__brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--teal);
  color: var(--navy-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__brand-logo {
  display: block;
  width: auto;
  height: 76px;
  max-width: 100%;
  object-fit: contain;
}

.site-footer__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links,
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
  transition: color 0.18s;
}

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

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-contact-list a,
.footer-contact-list__hours {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.6;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-contact-list__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--orange);
}

.footer-contact-list__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-list {
  display: flex;
  gap: 8px;
}

.social-list a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s, border-color 0.18s, background 0.18s, transform 0.18s, box-shadow 0.18s;
}

.social-list a:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(4, 10, 24, 0.18);
}

.social-list svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-link--facebook {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link--facebook:hover {
  background: #166fe0;
  border-color: #166fe0;
}

.social-link--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
  border-color: rgba(221, 42, 123, 0.72);
}

.social-link--instagram:hover {
  border-color: rgba(221, 42, 123, 0.92);
}

.social-link--linkedin {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-link--linkedin:hover {
  background: #0959aa;
  border-color: #0959aa;
}

.social-link--google {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.88);
}

.social-link--google:hover {
  background: #f3f6fb;
  border-color: #ffffff;
}

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--navy-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__copy,
.site-footer__legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.site-footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__legal a:hover {
  color: var(--text-secondary);
}

.content-fallback {
  padding: 80px 0;
}

.content-fallback article {
  max-width: 860px;
  margin: 0 auto;
}

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

.services-grid--core {
  max-width: 1140px;
  margin: 0 auto;
}

.services-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.services-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

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

.service-hub-section {
  background: linear-gradient(180deg, rgba(15, 28, 56, 0.96), rgba(10, 17, 40, 1));
  border-top: 1px solid var(--navy-border);
}

.service-hub-header {
  margin-bottom: 34px;
}

.service-card--hub {
  min-height: 100%;
}

.service-card--secondary {
  background: linear-gradient(180deg, rgba(24, 38, 70, 0.98), rgba(16, 28, 54, 0.98));
}

.testimonial-section {
  background: linear-gradient(180deg, rgba(6, 13, 31, 0.96), rgba(10, 17, 40, 1));
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.testimonial-grid,
.topic-grid,
.ratings-grid,
.resource-grid {
  display: grid;
  gap: 20px;
}

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

.testimonial-card,
.topic-card,
.rating-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card__stars {
  color: var(--teal);
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--off-white);
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-card__meta {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.testimonial-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.ratings-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 34px;
}

.section-header__desc--left {
  margin-left: 0;
}

.proof-copy .section-header__title,
.proof-copy .section-header__desc {
  margin-left: 0;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  padding: 18px 20px;
  color: var(--off-white);
  line-height: 1.6;
  font-weight: 600;
}

.ratings-grid {
  grid-template-columns: repeat(2, 1fr);
}

.rating-card {
  padding: 24px;
  text-align: center;
}

.rating-card--link {
  display: block;
  transition: border-color 0.18s, transform 0.18s, background 0.18s;
}

.rating-card--link:hover {
  border-color: rgba(0, 163, 193, 0.5);
  background: var(--navy-hover);
  transform: translateY(-2px);
}

.rating-card__value {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}

.rating-card__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.topic-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.topic-grid--service {
  grid-template-columns: repeat(3, 1fr);
}

.topic-card {
  padding: 28px 26px;
}

.topic-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.topic-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.topic-card__count {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 163, 193, 0.1);
  border: 1px solid rgba(0, 163, 193, 0.24);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topic-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--text-secondary);
}

.topic-card__summary {
  margin: 0 0 16px;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.topic-card--list {
  display: flex;
  flex-direction: column;
}

.topic-card--featured {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(22, 34, 63, 0.98), rgba(12, 20, 41, 0.98));
  border: 1px solid rgba(0, 163, 193, 0.16);
}

.topic-card__list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.topic-card__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-dim);
  flex-shrink: 0;
}

.condition-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: start;
}

.condition-entry__name {
  color: var(--off-white);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 3px;
}

.condition-entry__desc {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.55;
}

.topic-card__cta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.topic-card__cta:hover {
  color: var(--teal-light);
}

.topic-card--contact {
  padding: 30px 28px;
}

.topic-card__contact-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.topic-card__contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 163, 193, 0.12);
  border: 1px solid rgba(0, 163, 193, 0.24);
  color: var(--teal);
}

.topic-card__contact-icon svg {
  width: 24px;
  height: 24px;
}

.topic-card__title--contact {
  font-size: 1.3rem;
  line-height: 1.25;
}

.topic-card__desc--contact {
  font-size: 1rem;
  line-height: 1.6;
}

.topic-card__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.topic-card__inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 163, 193, 0.12);
  border: 1px solid rgba(0, 163, 193, 0.24);
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.topic-card__inline-link:hover {
  color: var(--teal-light);
  background: rgba(0, 163, 193, 0.18);
  border-color: rgba(0, 163, 193, 0.36);
}

.topic-card__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
}

.topic-card__chip {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.topic-card--featured .topic-card__cta {
  margin-top: auto;
  padding-top: 22px;
}

.conditions-overview-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.page-hero {
  padding: 110px 0 70px;
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.92), rgba(10, 17, 40, 1));
  border-bottom: 1px solid var(--navy-border);
}

.page-hero--compact {
  padding-top: 92px;
}

.page-hero--service {
  padding-top: 110px;
  background:
    linear-gradient(90deg, rgba(6, 13, 31, 0.92) 0%, rgba(6, 13, 31, 0.76) 44%, rgba(6, 13, 31, 0.94) 100%),
    linear-gradient(180deg, rgba(13, 26, 53, 0.92), rgba(10, 17, 40, 1));
}

.page-hero__content {
  max-width: 760px;
}

.page-hero__title {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.page-hero__desc {
  margin: 0 0 26px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.page-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.conditions-page {
  background: var(--navy-deep);
}

.conditions-page__index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.conditions-page__index-link {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 163, 193, 0.1);
  border: 1px solid rgba(0, 163, 193, 0.24);
  color: var(--off-white);
  font-size: 0.82rem;
  font-weight: 600;
}

.conditions-page__index-link:hover {
  background: rgba(0, 163, 193, 0.18);
}

.conditions-page__groups {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.conditions-page__group {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
  padding: 28px;
}

.conditions-page__group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.conditions-page__group-title {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.conditions-page__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.conditions-page__item {
  padding: 18px;
  border-radius: 14px;
  background: rgba(6, 13, 31, 0.38);
  border: 1px solid rgba(30, 48, 96, 0.9);
}

.conditions-page__item-name {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.conditions-page__item-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

.conditions-page__footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.service-detail-section,
.service-conditions-section,
.service-faq-section {
  background: var(--navy-deep);
}

.service-treatment-section {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.92), rgba(10, 17, 40, 0.96));
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.service-cta-section {
  background: linear-gradient(180deg, rgba(6, 13, 31, 0.98), rgba(10, 17, 40, 1));
  border-top: 1px solid var(--navy-border);
}

.section-header__title--left {
  text-align: left;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.service-detail-card,
.service-faq-item,
.service-cta-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
}

.service-detail-card {
  padding: 28px;
}

.service-detail-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-check-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-check-list li {
  color: var(--off-white);
  line-height: 1.7;
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tag {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 163, 193, 0.1);
  border: 1px solid rgba(0, 163, 193, 0.24);
  color: var(--off-white);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-provider-note {
  margin-top: 18px;
  padding: 18px 20px;
  background: rgba(22, 34, 63, 0.95);
  border: 1px solid rgba(0, 163, 193, 0.18);
  border-radius: 14px;
  color: var(--off-white);
  line-height: 1.7;
}

.service-faq-list {
  display: grid;
  gap: 18px;
}

.service-faq-item {
  padding: 24px 26px;
}

.service-faq-item__question {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.35;
}

.service-faq-item__answer {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-cta-card {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 22px;
  align-items: center;
}

.page-hero--service-centered {
  padding-top: 96px;
  padding-bottom: 54px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 13, 31, 0.68) 0%, rgba(6, 13, 31, 0.78) 100%),
    linear-gradient(180deg, rgba(13, 26, 53, 0.92), rgba(10, 17, 40, 1));
}

.page-hero__content--centered {
  margin: 0 auto;
  text-align: center;
}

.page-hero--service-centered .hero__badge {
  margin-bottom: 18px;
}

.page-hero__title--caps {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-hero--service-centered .page-hero__title {
  margin: 8px 0 10px;
  line-height: 1.04;
}

.page-hero--service-centered .page-hero__desc {
  margin-bottom: 18px;
  max-width: 820px;
}

.page-hero__desc--centered,
.page-hero__actions--centered {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.page-hero__actions--centered {
  gap: 12px;
}

.service-question-section {
  background: var(--navy-deep);
}

.service-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-question-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 28px 24px;
}

.service-question-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 163, 193, 0.12);
  border: 1px solid rgba(0, 163, 193, 0.24);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.service-question-card__title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.service-question-card__body {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.service-feature-section {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.92), rgba(10, 17, 40, 0.96));
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.service-track-section {
  background: var(--navy-deep);
}

.page-id-17 .page-hero {
  padding: 96px 0 50px;
  background: linear-gradient(180deg, #20355f 0%, #16284b 100%);
  border-bottom-color: rgba(126, 154, 214, 0.3);
}

.page-id-17 .service-track-section {
  padding: 40px 0 56px;
  background: linear-gradient(180deg, #16284a 0%, #12203c 100%);
}

.page-id-17 .topic-grid--two {
  gap: 14px;
}

.page-id-17 .topic-card--contact {
  padding: 20px 20px 18px;
  background: linear-gradient(180deg, rgba(48, 67, 110, 0.98), rgba(38, 55, 95, 0.98));
  border: 1px solid rgba(117, 149, 214, 0.34);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(4, 10, 24, 0.14);
}

.page-id-17 .topic-card__contact-header {
  gap: 10px;
  margin-bottom: 8px;
}

.page-id-17 .topic-card__contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 163, 193, 0.18);
  border-color: rgba(0, 163, 193, 0.28);
}

.page-id-17 .topic-card__contact-icon svg {
  width: 19px;
  height: 19px;
}

.page-id-17 .topic-card__title--contact {
  font-size: 1.12rem;
  line-height: 1.2;
}

.page-id-17 .topic-card__desc--contact {
  font-size: 0.94rem;
  line-height: 1.5;
}

.page-id-17 .topic-card__contact-links {
  gap: 8px;
  margin-top: 12px;
}

.page-id-17 .topic-card__inline-link,
.page-id-17 .topic-card__cta {
  font-size: 0.82rem;
}

.page-id-17 .topic-card__inline-link {
  padding: 8px 12px;
}

.page-id-17 .topic-card__cta {
  margin-top: 12px;
}

.page-id-17 .page-hero__title {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.page-id-17 .page-hero__desc {
  max-width: 760px;
  color: rgba(223, 232, 252, 0.92);
}

.page-id-17 .topic-card__inline-link {
  background: rgba(0, 163, 193, 0.18);
  border-color: rgba(0, 163, 193, 0.34);
}

.page-id-17 .topic-card__inline-link:hover {
  background: rgba(0, 163, 193, 0.24);
  border-color: rgba(0, 163, 193, 0.46);
}

.page-id-17 .topic-card__cta {
  color: #4fd8f2;
}

.page-id-17 .page-hero--contact-refresh {
  background:
    radial-gradient(circle at top right, rgba(0, 163, 193, 0.18), transparent 34%),
    linear-gradient(180deg, #20355f 0%, #16284b 100%);
}

.contact-page-shell {
  background: linear-gradient(180deg, rgba(20, 36, 68, 0.98), rgba(14, 24, 48, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.22);
  border-bottom: 1px solid rgba(117, 149, 214, 0.18);
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.contact-action-card {
  padding: 34px 24px 28px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(27, 45, 88, 0.1);
  box-shadow: 0 14px 30px rgba(7, 15, 34, 0.08);
}

.contact-action-card__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.contact-action-card__icon svg {
  width: 28px;
  height: 28px;
}

.contact-action-card--coral .contact-action-card__icon {
  background: rgba(234, 88, 12, 0.14);
  color: var(--teal);
}

.contact-action-card--teal .contact-action-card__icon {
  background: rgba(35, 59, 105, 0.14);
  color: #233b69;
}

.contact-action-card--navy .contact-action-card__icon {
  background: rgba(19, 37, 84, 0.14);
  color: #132554;
}

.contact-action-card__title {
  margin: 0 0 10px;
  color: #132554;
  font-size: 1.18rem;
  line-height: 1.25;
}

.contact-action-card__desc {
  margin: 0 0 18px;
  color: #304672;
  font-size: 0.96rem;
  line-height: 1.6;
}

.contact-action-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.contact-action-card__button:hover {
  transform: translateY(-1px);
}

.contact-action-card__button--coral {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
}

.contact-action-card__button--coral:hover {
  background: var(--teal-light);
}

.contact-action-card__button--teal {
  background: #233b69;
  color: #fff;
  box-shadow: 0 10px 20px rgba(35, 59, 105, 0.22);
}

.contact-action-card__button--teal:hover {
  background: #1a2f59;
}

.contact-action-card__button--navy {
  background: transparent;
  color: #132554;
  border: 2px solid rgba(19, 37, 84, 0.72);
}

.contact-action-card__button--navy:hover {
  background: rgba(19, 37, 84, 0.08);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 20px;
}

.contact-page-grid--single {
  grid-template-columns: 1fr;
}

.contact-page-panel {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(45, 65, 108, 0.98), rgba(34, 50, 88, 0.98));
  border: 1px solid rgba(117, 149, 214, 0.32);
  box-shadow: 0 18px 34px rgba(4, 10, 24, 0.16);
}

.contact-page-panel .section-header__title,
.contact-page-panel .section-header__desc {
  margin-left: 0;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-page-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.contact-page-list__item {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(117, 149, 214, 0.16);
}

.contact-page-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-page-list__label {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-list__value {
  color: var(--off-white);
  font-size: 1rem;
  line-height: 1.6;
}

a.contact-page-list__value:hover {
  color: var(--teal-light);
}

.contact-page-cta-section {
  background: linear-gradient(180deg, rgba(14, 24, 48, 1), rgba(10, 17, 40, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.14);
}

.service-treatment-section {
  background: linear-gradient(180deg, rgba(16, 31, 63, 0.96), rgba(13, 26, 53, 0.94));
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.pain-symptom-checker-section {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.98), rgba(10, 17, 40, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.14);
  border-bottom: 1px solid rgba(117, 149, 214, 0.12);
}

.internal-symptom-checker-section {
  background: linear-gradient(180deg, rgba(16, 31, 63, 0.96), rgba(10, 17, 40, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.14);
  border-bottom: 1px solid rgba(117, 149, 214, 0.12);
}

.internal-symptom-checker {
  max-width: 980px;
  margin: 0 auto;
}

.internal-symptom-checker__card {
  padding: 20px 24px 18px;
  border: 1px solid rgba(117, 149, 214, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.93));
  box-shadow: 0 18px 34px rgba(4, 10, 24, 0.12);
}

.internal-symptom-checker__card--hidden {
  display: none;
}

.internal-symptom-checker__question {
  min-height: 64px;
  color: #132554;
  font-size: 1.55rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 18px;
}

.internal-symptom-checker__actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.internal-symptom-checker__button {
  min-width: 104px;
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.internal-symptom-checker__button--yes {
  background: #036431;
}

.internal-symptom-checker__button--yes:hover {
  background: #025429;
}

.internal-symptom-checker__button--no {
  background: #db1022;
}

.internal-symptom-checker__button--no:hover {
  background: #c40e1e;
}

.internal-symptom-checker__progress {
  text-align: center;
  color: #6e7f9f;
  font-size: 1rem;
  line-height: 1.4;
}

.internal-symptom-checker__result-box {
  padding: 20px 22px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.internal-symptom-checker__result-box--urgent {
  background: #f8c7cb;
  color: #4a1620;
}

.internal-symptom-checker__result-box--caution {
  background: #f8e7ab;
  color: #534117;
}

.internal-symptom-checker__result-box--moderate {
  background: #dce9ff;
  color: #17325f;
}

.internal-symptom-checker__result-box--light {
  background: #dff3e4;
  color: #164229;
}

.internal-symptom-checker__result-title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.internal-symptom-checker__result-text,
.internal-symptom-checker__note {
  margin: 0;
  line-height: 1.68;
}

.internal-symptom-checker__note {
  color: #5b6c8f;
  margin-bottom: 22px;
}

.internal-symptom-checker__restart {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 12px;
  background: #3798db;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
}

.internal-symptom-checker__restart:hover {
  background: #2f8ccd;
}

.pain-symptom-checker {
  padding: 30px;
  border: 1px solid rgba(117, 149, 214, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(21, 36, 73, 0.98), rgba(12, 22, 45, 0.98));
  box-shadow: 0 18px 34px rgba(4, 10, 24, 0.18);
  color: var(--off-white);
}

.pain-symptom-checker__intro,
.pain-symptom-checker__about {
  margin-bottom: 22px;
}

.pain-symptom-checker__intro .pain-symptom-checker__title {
  color: var(--white);
}

.pain-symptom-checker__intro p,
.pain-symptom-checker__about p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.74;
}

.pain-symptom-checker__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.pain-symptom-checker__panel,
.pain-symptom-checker__result-card {
  padding: 24px;
  border: 1px solid rgba(117, 149, 214, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
}

.pain-symptom-checker__title {
  margin: 0 0 18px;
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--navy-base);
}

.pain-symptom-checker__panel-copy {
  margin: 0 0 16px;
  color: var(--navy-base);
  line-height: 1.68;
}

.pain-symptom-checker__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pain-symptom-checker__option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(117, 149, 214, 0.16);
  border-radius: 14px;
  background: rgba(19, 37, 84, 0.04);
  cursor: pointer;
}

.pain-symptom-checker__option input {
  margin-top: 2px;
  accent-color: var(--teal);
}

.pain-symptom-checker__option span {
  color: var(--navy-base);
  line-height: 1.5;
  font-size: 0.95rem;
}

.pain-symptom-checker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pain-symptom-checker__button {
  min-width: 170px;
}

.pain-symptom-checker .btn-outline {
  color: var(--navy-base);
  border-color: rgba(19, 37, 84, 0.22);
  background: rgba(19, 37, 84, 0.02);
}

.pain-symptom-checker .btn-outline:hover {
  color: var(--navy-base);
  border-color: rgba(19, 37, 84, 0.4);
  background: rgba(19, 37, 84, 0.08);
}

.pain-symptom-checker__result-label {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pain-symptom-checker__result {
  min-height: 120px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(19, 37, 84, 0.04);
  color: var(--navy-base);
  line-height: 1.72;
}

.pain-symptom-checker__helper {
  margin: 16px 0 0;
  color: var(--text-secondary);
  line-height: 1.68;
}

.pain-symptom-checker__result-guide {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--navy-base);
  line-height: 1.68;
}

.pain-symptom-checker__info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.pain-symptom-checker__next-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.pain-symptom-checker__next-steps li {
  position: relative;
  padding-left: 26px;
  color: var(--navy-base);
  line-height: 1.72;
}

.pain-symptom-checker__next-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.14);
}

.pain-symptom-checker__next-steps--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.pain-symptom-checker__contact-list {
  display: grid;
  gap: 10px;
  color: var(--navy-base);
  line-height: 1.7;
}

.pain-symptom-checker__contact-list a {
  color: var(--teal-light);
}

.pain-symptom-checker__contact-list a:hover {
  color: var(--white);
}

.pain-symptom-checker__about {
  margin-top: 28px;
  color: var(--off-white);
}

.pain-symptom-checker__about .pain-symptom-checker__title {
  color: var(--white);
}

.pain-symptom-checker__about .pain-symptom-checker__next-steps li {
  color: var(--off-white);
}

.pain-symptom-checker__disclaimer {
  margin: 20px 0 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.7;
}

.pain-symptom-checker__panel .pain-symptom-checker__helper,
.pain-symptom-checker__result-card .pain-symptom-checker__helper {
  color: var(--navy-base);
}

.pain-symptom-checker-section--acute {
  padding-top: 0;
}

.pain-symptom-checker-section--assessment {
  padding-top: 0;
}

.pain-symptom-checker-section--rehab {
  padding-top: 0;
}

.pain-symptom-checker-section--conditions {
  padding-top: 24px;
  padding-bottom: 0;
}

.pain-symptom-checker-section--rehab .section-header {
  margin-top: 16px;
}

.pain-symptom-checker-section--rehab .section-header__desc {
  max-width: 760px;
}

.pain-symptom-checker__grid--acute {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.pain-symptom-checker__grid--assessment {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.pain-symptom-checker__grid--rehab {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.pain-symptom-checker__grid--conditions {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.acute-symptom-checker__fields {
  display: grid;
  gap: 14px;
}

.acute-symptom-checker__field {
  display: grid;
  gap: 8px;
}

.acute-symptom-checker__field > span {
  color: var(--navy-base);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.acute-symptom-checker__triggers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.acute-symptom-checker__triggers--assessment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.acute-symptom-checker__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(117, 149, 214, 0.16);
  border-radius: 14px;
  background: rgba(19, 37, 84, 0.04);
  color: var(--navy-base);
  cursor: pointer;
  min-height: 46px;
}

.acute-symptom-checker__trigger input {
  accent-color: var(--teal);
}

.pain-symptom-checker__result--acute {
  min-height: 152px;
}

.pain-symptom-checker__result--assessment p {
  margin: 0 0 10px;
}

.pain-symptom-checker__result--assessment p:last-child {
  margin-bottom: 0;
}

.pain-symptom-checker__result--rehab {
  min-height: 148px;
}

.pain-assessment__slider-wrap {
  display: grid;
  gap: 10px;
}

.pain-assessment__slider {
  width: 100%;
  accent-color: var(--teal);
}

.pain-assessment__scale {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--navy-base);
  font-size: 0.82rem;
  line-height: 1.4;
}

.pain-assessment__scale span:nth-child(2) {
  text-align: center;
}

.pain-assessment__scale span:last-child {
  text-align: right;
}

.pain-assessment__level {
  color: var(--navy-base);
  font-size: 0.92rem;
  line-height: 1.5;
}

.sciatica-checker__sliders {
  display: grid;
  gap: 16px;
}

.sciatica-checker__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(117, 149, 214, 0.16);
  border-radius: 14px;
  background: rgba(19, 37, 84, 0.04);
}

.sciatica-checker__value {
  min-width: 34px;
  text-align: center;
  color: var(--navy-base);
  font-size: 1rem;
  font-weight: 800;
}

.rehab-checker__injury-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.rehab-checker__injury-button {
  border: 1px solid rgba(117, 149, 214, 0.18);
  background: rgba(19, 37, 84, 0.04);
  color: var(--navy-base);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rehab-checker__injury-button:hover,
.rehab-checker__injury-button.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy-deep);
}

.rehab-checker__injury-detail {
  padding: 18px;
  border-radius: 16px;
  background: rgba(19, 37, 84, 0.04);
  margin-bottom: 16px;
}

.rehab-checker__injury-detail h3 {
  margin: 0 0 8px;
  color: var(--navy-base);
  font-size: 1.08rem;
  line-height: 1.3;
}

.rehab-checker__injury-detail p {
  margin: 0;
  color: var(--navy-base);
  line-height: 1.65;
}

.pain-symptom-checker__title--compact {
  margin-top: 6px;
}

.pain-symptom-checker__options--single {
  grid-template-columns: 1fr;
}

.service-conditions-section {
  background: var(--navy-deep);
}

.service-faq-section {
  background: linear-gradient(180deg, rgba(16, 31, 63, 0.94), rgba(10, 17, 40, 0.96));
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.service-feature-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.service-feature-media {
  min-height: 520px;
  border-radius: 18px;
  border: 1px solid var(--navy-border);
  background:
    linear-gradient(180deg, rgba(6, 13, 31, 0.16) 0%, rgba(6, 13, 31, 0.56) 100%),
    image-set(
      url("assets/images/hero-landing-wide.avif") type("image/avif"),
      url("assets/images/hero-landing-wide.png") type("image/png")
    );
  background-size: cover;
  background-position: center center;
}

.service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 16px;
}

.service-feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--off-white);
  line-height: 1.75;
}

.service-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 163, 193, 0.15);
}

.service-tag-list--centered {
  justify-content: center;
}

.service-trust-bar {
  padding: 22px 0;
  background: rgba(6, 13, 31, 0.98);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.service-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-trust-bar__item {
  text-align: center;
  padding: 12px 10px;
}

.service-trust-bar__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(141, 160, 194, 0.28));
  opacity: 0.9;
}

.service-trust-bar__value {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-trust-bar__label {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.resource-pill {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(0, 163, 193, 0.14), rgba(22, 34, 63, 0.9));
  border: 1px solid rgba(0, 163, 193, 0.28);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
}

.page-hero--patient-resources {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(23, 40, 78, 0.98), rgba(10, 17, 40, 1));
}

.patient-resources-intro {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.98), rgba(9, 16, 36, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.16);
  border-bottom: 1px solid rgba(117, 149, 214, 0.14);
}

.patient-resources-actions,
.patient-resource-guide-grid,
.patient-resource-gallery,
.patient-resource-insurance-grid {
  display: grid;
  gap: 20px;
}

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

.patient-resource-action-card,
.patient-resource-panel,
.patient-resource-gallery-card,
.patient-resource-insurance-card,
.patient-resource-sidecard,
.patient-resource-faq-item {
  border: 1px solid rgba(117, 149, 214, 0.22);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(4, 10, 24, 0.14);
}

.patient-resource-action-card {
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
  color: #132554;
}

.patient-resource-action-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.patient-resource-action-card__icon svg {
  width: 26px;
  height: 26px;
}

.patient-resource-action-card__title,
.patient-resource-panel__title,
.patient-resource-gallery-card__title,
.patient-resource-sidecard__title {
  margin: 0 0 12px;
  line-height: 1.25;
}

.patient-resource-action-card__title {
  font-size: 1.2rem;
}

.patient-resource-action-card__desc,
.patient-resource-gallery-card__desc,
.patient-resource-insurance-card p,
.patient-resource-faq-item p {
  margin: 0;
  line-height: 1.7;
}

.patient-resource-action-card__desc {
  color: #304672;
  margin-bottom: 18px;
}

.patient-resource-action-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #132554;
  color: #fff;
  font-weight: 700;
}

.patient-resource-action-card__link:hover {
  background: #0f1e43;
}

.patient-resources-guide {
  background: var(--navy-deep);
}

.patient-resource-guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.patient-resource-panel {
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(28, 47, 99, 0.98), rgba(18, 32, 66, 0.98));
}

.patient-resource-panel--warm {
  background: linear-gradient(180deg, rgba(43, 61, 109, 0.98), rgba(26, 43, 84, 0.98));
}

.patient-resource-panel--accent {
  background: linear-gradient(180deg, rgba(28, 47, 99, 0.98), rgba(18, 32, 66, 0.98));
}

.patient-resource-panel--compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.patient-resource-panel__title {
  font-size: 1.28rem;
}

.patient-resource-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.patient-resource-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--off-white);
  line-height: 1.72;
}

.patient-resource-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.14);
}

.patient-resource-checklist--tight {
  gap: 12px;
}

.patient-resource-mini-list {
  display: grid;
  gap: 14px;
  color: var(--off-white);
  line-height: 1.72;
}

.patient-resources-surgery {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.98), rgba(14, 28, 58, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.16);
  border-bottom: 1px solid rgba(117, 149, 214, 0.12);
}

.patient-resource-surgery {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(20, 35, 72, 0.98), rgba(15, 28, 60, 0.98));
  border: 1px solid rgba(117, 149, 214, 0.18);
  box-shadow: 0 18px 36px rgba(4, 10, 24, 0.18);
}

.patient-resource-surgery__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
}

.patient-resource-surgery__brand-main {
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.patient-resource-surgery__brand-sub {
  margin-top: 10px;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.patient-resource-surgery__tagline {
  max-width: 320px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.45;
  text-align: right;
}

.patient-resource-surgery__banner {
  margin: 0 -28px 26px;
  padding: 20px 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.patient-resource-surgery__callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px 22px;
  border: 1px solid rgba(249, 115, 22, 0.9);
  border-radius: 18px;
  background: rgba(19, 37, 84, 0.45);
}

.patient-resource-surgery__callout-icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border: 2px solid rgba(249, 115, 22, 0.95);
  border-radius: 3px;
}

.patient-resource-surgery__callout p {
  margin: 0;
  color: var(--off-white);
  line-height: 1.65;
}

.patient-resource-surgery__phase + .patient-resource-surgery__phase {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(117, 149, 214, 0.16);
}

.patient-resource-surgery__phase-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.patient-resource-surgery__phase-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.22);
}

.patient-resource-surgery__phase-number {
  color: rgba(176, 192, 228, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.patient-resource-surgery__phase-title {
  margin: 4px 0 0;
  color: var(--orange);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.1;
}

.patient-resource-surgery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.patient-resource-surgery__card {
  padding: 18px 18px 20px;
  border: 1px solid rgba(117, 149, 214, 0.22);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(27, 44, 88, 0.98), rgba(17, 31, 64, 0.98));
}

.patient-resource-surgery__card-label {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.patient-resource-surgery__card p {
  margin: 0;
  color: var(--off-white);
  line-height: 1.6;
}

.patient-resource-surgery__note {
  margin: 18px 0 0;
  color: rgba(206, 216, 242, 0.78);
  font-style: italic;
  line-height: 1.6;
}

.patient-resource-surgery__alert {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--orange);
  color: #fff;
}

.patient-resource-surgery__alert strong {
  font-size: 1.15rem;
  line-height: 1.35;
}

.patient-resource-surgery__alert span {
  font-size: 1rem;
  line-height: 1.45;
}

.patient-resources-billing {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.98), rgba(10, 17, 40, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.16);
  border-bottom: 1px solid rgba(117, 149, 214, 0.12);
}

.patient-resource-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.patient-resource-insurance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.patient-resource-insurance-card {
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(29, 47, 96, 0.98), rgba(21, 35, 71, 0.98));
}

.patient-resource-insurance-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.patient-resource-insurance-card p {
  color: var(--text-secondary);
}

.patient-resource-sidecard {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  color: #132554;
}

.patient-resource-sidecard__title {
  font-size: 1.25rem;
}

.patient-resource-sidecard .patient-resource-checklist li {
  color: #233b69;
}

.patient-resource-sidecard__actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.patient-resource-billing-email {
  color: #132554;
  border-color: rgba(19, 37, 84, 0.22);
}

.patient-resource-billing-email:hover {
  color: #132554;
  border-color: rgba(19, 37, 84, 0.4);
  background: rgba(19, 37, 84, 0.06);
}

.patient-resource-tour {
  background: var(--navy-deep);
}

.patient-resource-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.patient-resource-gallery-card {
  padding: 20px;
  border: 1px solid rgba(117, 149, 214, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(27, 44, 88, 0.98), rgba(17, 31, 64, 0.98));
  box-shadow: 0 16px 32px rgba(4, 10, 24, 0.14);
}

.patient-resource-gallery-card__button {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.patient-resource-gallery-card__button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 6px;
  border-radius: 18px;
}

.patient-resource-gallery-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(117, 149, 214, 0.18);
  transition: transform 0.2s ease;
}

.patient-resource-gallery-card__button:hover .patient-resource-gallery-card__image {
  transform: scale(1.02);
}

.patient-resource-gallery-card__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.82);
  color: var(--off-white);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.patient-resource-gallery-card__button:hover .patient-resource-gallery-card__badge {
  background: rgba(249, 115, 22, 0.95);
}

.patient-resource-gallery-card__title {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.patient-resource-gallery-card__desc {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.patient-resources-events,
.patient-resources-blog {
  border-top: 1px solid rgba(117, 149, 214, 0.14);
}

.patient-resources-events {
  background: linear-gradient(180deg, rgba(13, 26, 53, 0.98), rgba(10, 17, 40, 1));
}

.patient-resources-blog {
  background: linear-gradient(180deg, rgba(17, 31, 64, 0.96), rgba(10, 17, 40, 1));
}

.patient-resource-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.patient-resource-story-card {
  padding: 26px 24px;
  border: 1px solid rgba(117, 149, 214, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 47, 99, 0.98), rgba(17, 31, 64, 0.98));
  box-shadow: 0 16px 32px rgba(4, 10, 24, 0.14);
}

.patient-resource-story-card--blog {
  background: linear-gradient(180deg, rgba(22, 59, 88, 0.98), rgba(15, 39, 66, 0.98));
}

.blog-topic-grid,
.blog-post-grid {
  align-items: stretch;
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.blog-post-card .topic-card__title {
  margin-bottom: 0;
}

.blog-post-card__link {
  color: inherit;
  text-decoration: none;
}

.blog-post-card__link:hover {
  color: var(--color-accent);
}

.blog-empty-state {
  max-width: 760px;
}

.patient-resource-story-card__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patient-resource-story-card__title {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.patient-resource-story-card__desc {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.72;
}

.patient-resources-faq {
  background: linear-gradient(180deg, rgba(16, 31, 63, 0.96), rgba(10, 17, 40, 1));
  border-top: 1px solid rgba(117, 149, 214, 0.14);
}

.patient-resource-faq-list {
  display: grid;
  gap: 16px;
}

.patient-resource-faq-item {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(28, 47, 99, 0.98), rgba(17, 31, 64, 0.98));
}

.patient-resource-faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 58px 22px 24px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.patient-resource-faq-item summary::-webkit-details-marker {
  display: none;
}

.patient-resource-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 700;
}

.patient-resource-faq-item[open] summary::after {
  content: "−";
}

.patient-resource-faq-item p {
  padding: 0 24px 22px;
  color: var(--text-secondary);
}

.patient-resource-lightbox {
  width: min(1200px, calc(100vw - 32px));
  max-width: 1200px;
  padding: 0;
  border: 0;
  background: transparent;
}

.patient-resource-lightbox::backdrop {
  background: rgba(6, 13, 31, 0.82);
  backdrop-filter: blur(4px);
}

.patient-resource-lightbox__dialog {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 31, 64, 0.99), rgba(10, 17, 40, 0.99));
  border: 1px solid rgba(117, 149, 214, 0.26);
  box-shadow: 0 30px 60px rgba(4, 10, 24, 0.32);
}

.patient-resource-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.patient-resource-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 13, 31, 0.48);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.patient-resource-lightbox__nav--prev {
  left: 18px;
}

.patient-resource-lightbox__nav--next {
  right: 18px;
}

.patient-resource-lightbox__image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.patient-resource-lightbox__copy {
  padding: 18px 6px 0;
}

.patient-resource-lightbox__title {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.patient-resource-lightbox__desc {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.patient-resource-lightbox__counter {
  margin-top: 10px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid--core {
    max-width: none;
  }

  .services-grid--two {
    max-width: none;
  }

  .services-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .credentials-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid--four,
  .testimonial-grid,
  .topic-grid--three,
  .topic-grid--service,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ratings-band {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .pathway-grid,
  .proof-grid,
  .proof-list,
  .conditions-page__items,
  .service-detail-grid,
  .service-feature-split,
  .service-cta-card {
    grid-template-columns: 1fr;
  }

  .service-question-grid,
  .service-trust-bar__grid,
  .patient-resources-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .patient-resource-surgery {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .patient-resource-surgery__top {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .patient-resource-surgery__tagline {
    max-width: none;
    text-align: left;
  }

  .patient-resource-surgery__banner {
    margin: 0 -20px 22px;
    padding: 18px;
    font-size: 1.5rem;
  }

  .patient-resource-surgery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature-media {
    min-height: 360px;
  }

  .site-footer__grid,
  .patient-resource-split,
  .patient-resource-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .patient-resource-sidecard {
    grid-column: 1 / -1;
  }

  .patient-resource-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-symptom-checker__grid {
    grid-template-columns: 1fr;
  }

  .pain-symptom-checker__options,
  .pain-symptom-checker__info-grid,
  .pain-symptom-checker__next-steps--columns {
    grid-template-columns: 1fr;
  }

  .pain-symptom-checker__grid--acute {
    grid-template-columns: 1fr;
  }

  .pain-symptom-checker__grid--assessment,
  .pain-symptom-checker__grid--rehab,
  .pain-symptom-checker__grid--conditions,
  .acute-symptom-checker__triggers--assessment {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-branding {
    margin-right: 0;
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .site-header__mobile-toggle {
    display: inline-flex;
  }

  .site-header__panel {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 10px;
  }

  .site-header.is-mobile-open .site-header__panel {
    display: grid;
    gap: 12px;
  }

  .main-navigation {
    order: initial;
    width: 100%;
    margin: 0;
  }

  .main-navigation ul {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 8px;
    width: 100%;
  }

  .main-navigation .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 12px;
    gap: 6px;
  }

  .main-navigation a {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .main-navigation li {
    width: 100%;
    min-width: 0;
  }

  .main-navigation li.menu-item-has-children {
    grid-column: auto;
  }

  .main-navigation .menu-item-has-children > a {
    justify-content: space-between;
  }

  .main-navigation .sub-menu::before {
    display: none;
  }

  .main-navigation .sub-menu a {
    justify-content: center;
    text-align: center;
    min-height: 42px;
  }

  .hero {
    min-height: 620px;
    padding-top: 96px;
  }

  .hero__content {
    margin-left: 0;
  }

  .site-header__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
  }

  .header-status {
    margin-right: 0;
    justify-content: center;
    min-height: 42px;
  }

  .phone-link,
  .site-header__actions .btn-teal {
    width: 100%;
    text-align: center;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .patient-resource-lightbox {
    width: calc(100vw - 20px);
  }

  .patient-resource-lightbox__dialog {
    padding: 16px;
  }

  .patient-resource-lightbox__image {
    max-height: 60vh;
  }

  .patient-resource-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .patient-resource-gallery-card__image {
    aspect-ratio: 4 / 3;
  }

  .pain-symptom-checker {
    padding: 22px 18px;
  }

  .pain-symptom-checker__panel,
  .pain-symptom-checker__result-card {
    padding: 20px 18px;
  }

  .acute-symptom-checker__triggers {
    display: grid;
    grid-template-columns: 1fr;
  }

  .internal-symptom-checker__question {
    min-height: 0;
    font-size: 1.35rem;
    margin-bottom: 22px;
  }

  .internal-symptom-checker__actions {
    gap: 12px;
  }

  .internal-symptom-checker__button {
    min-width: 0;
    flex: 1;
    min-height: 56px;
    font-size: 1.25rem;
  }

  .internal-symptom-checker__restart {
    min-height: 54px;
    font-size: 1.15rem;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .services-grid,
  .locations-grid,
  .form-grid,
  .form-row,
  .site-footer__grid,
  .services-grid--core,
  .services-grid--five,
  .services-grid--two,
  .services-grid--three,
  .services-grid--four,
  .testimonial-grid,
  .topic-grid--three,
  .topic-grid--two,
  .topic-grid--service,
  .ratings-grid,
  .resource-grid,
  .service-question-grid,
  .service-trust-bar__grid,
  .patient-resources-actions,
  .patient-resource-guide-grid,
  .patient-resource-insurance-grid,
  .patient-resource-split,
  .patient-resource-story-grid,
  .patient-resource-gallery,
  .patient-resource-surgery__grid {
    grid-template-columns: 1fr;
  }

  .patient-resource-surgery__phase-header {
    gap: 14px;
  }

  .patient-resource-surgery__phase-icon {
    width: 46px;
    height: 46px;
  }

  .patient-resource-surgery__callout {
    padding: 18px;
  }

  .patient-resource-surgery__alert {
    padding: 18px 20px;
  }

  .main-navigation li:last-child a {
    white-space: nowrap;
  }

  .page-hero__actions,
  .conditions-page__group-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero__actions--centered {
    align-items: stretch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-metric--one-line .hero-metric__label {
    white-space: normal;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 0;
    align-items: flex-end;
    padding: 112px 0 36px;
  }

  .hero__image {
    background-size: cover;
    background-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(6, 13, 31, 0.18) 0%, rgba(6, 13, 31, 0.44) 26%, rgba(6, 13, 31, 0.86) 62%, #0a1128 100%),
      linear-gradient(90deg, rgba(6, 13, 31, 0.84) 0%, rgba(6, 13, 31, 0.34) 58%, rgba(6, 13, 31, 0.78) 100%);
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 0 4px;
  }

  .hero__badge {
    margin-bottom: 18px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero__title {
    font-size: clamp(2rem, 11vw, 2.85rem);
    margin-bottom: 16px;
  }

  .hero__subtext {
    max-width: none;
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__buttons .btn-teal,
  .hero__buttons .btn-outline,
  .page-hero__actions--centered .btn-teal,
  .page-hero__actions--centered .btn-outline {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--navy-border);
  }

  .map-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-area-panel__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-card,
  .conditions-page__group,
  .topic-card,
  .pathway-card,
  .service-card,
  .rating-card,
  .service-detail-card,
  .service-faq-item,
  .proof-item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-card {
    align-items: flex-start;
  }

  .contact-card__icon {
    margin-top: 2px;
  }

  .ratings-band {
    padding: 24px 20px;
    gap: 22px;
  }

  .ratings-grid {
    gap: 14px;
  }

  .section-header__title,
  .page-hero__title {
    text-wrap: balance;
  }

  .topic-card__meta,
  .conditions-page__group-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .topic-card__count {
    margin-top: 2px;
  }

  .service-feature-media {
    min-height: 280px;
  }

  .service-cta-card {
    padding: 26px 22px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-action-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-panel {
    padding: 22px 18px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .site-branding__mark {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .site-branding__logo {
    height: 58px;
    max-width: min(100%, 230px);
  }

  .site-branding__name {
    font-size: 0.92rem;
  }

  .site-branding__tag {
    font-size: 0.68rem;
  }

  .main-navigation a {
    min-height: 44px;
    font-size: 0.88rem;
  }

  .main-navigation .sub-menu {
    padding: 6px;
  }

  .header-status,
  .phone-link,
  .site-header__actions .btn-teal {
    grid-column: auto;
    width: 100%;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 28px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .hero__subtext,
  .page-hero__desc,
  .section-header__desc,
  .topic-card__desc,
  .pathway-card__desc,
  .service-card__desc,
  .service-faq-item__answer,
  .contact-copy p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .form-card,
  .ratings-band,
  .conditions-page__group,
  .topic-card,
  .pathway-card,
  .service-card,
  .service-detail-card,
  .service-faq-item,
  .service-cta-card {
    padding: 20px 18px;
  }

  .form-card__title,
  .contact-copy h3,
  .conditions-page__group-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.assessment-sticky {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  align-items: center;
}

.assessment-sticky__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  width: 64px;
  padding: 18px 14px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-right: none;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.96), rgba(234, 88, 12, 0.92));
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
  color: var(--white);
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.assessment-sticky__tab:hover {
  transform: translateX(-4px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.34);
}

.assessment-sticky__tab-text {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.assessment-sticky__tab-icon {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.18s ease;
}

.assessment-sticky__menu {
  position: absolute;
  right: 78px;
  top: 50%;
  width: min(360px, calc(100vw - 108px));
  max-height: min(72vh, 760px);
  overflow-y: auto;
  padding: 20px;
  border: 1px solid rgba(53, 81, 143, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(28, 47, 99, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.assessment-sticky:hover .assessment-sticky__menu,
.assessment-sticky:focus-within .assessment-sticky__menu,
.assessment-sticky.is-open .assessment-sticky__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.assessment-sticky__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd0af;
}

.assessment-sticky__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-light);
}

.assessment-sticky__title {
  margin: 12px 0 16px;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.15;
}

.assessment-sticky__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assessment-sticky__item {
  margin: 0;
}

.assessment-sticky__link {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(83, 112, 181, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.assessment-sticky__link:hover {
  transform: translateX(-3px);
  border-color: rgba(249, 115, 22, 0.8);
  background: rgba(249, 115, 22, 0.08);
}

.assessment-sticky__link-title {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}

.assessment-sticky__link-page {
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.assessment-sticky.is-open .assessment-sticky__tab-icon,
.assessment-sticky:hover .assessment-sticky__tab-icon,
.assessment-sticky:focus-within .assessment-sticky__tab-icon {
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .assessment-sticky {
    right: 14px;
    bottom: 14px;
    top: auto;
    transform: none;
  }

  .assessment-sticky__tab {
    min-height: auto;
    width: auto;
    max-width: 260px;
    padding: 13px 16px;
    border-right: 1px solid rgba(249, 115, 22, 0.45);
    border-radius: 999px;
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }

  .assessment-sticky__tab-text {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .assessment-sticky__menu {
    right: 0;
    top: auto;
    bottom: calc(100% + 12px);
    width: min(360px, calc(100vw - 28px));
    max-height: min(62vh, 540px);
    transform: translateY(8px);
  }

  .assessment-sticky:hover .assessment-sticky__menu,
  .assessment-sticky:focus-within .assessment-sticky__menu,
  .assessment-sticky.is-open .assessment-sticky__menu {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .assessment-sticky__menu {
    padding: 16px;
  }

  .assessment-sticky__title {
    font-size: 1.02rem;
  }

  .assessment-sticky__link-title {
    font-size: 0.9rem;
  }
}
