:root {
      --blue: #0274BE;
      --blue-dark: #015a96;
      --blue-light: #e8f4fc;
      --red: #ed1a1f;
      --dark: #222222;
      --text: #444444;
      --text-muted: #666666;
      --gray-50: #f7f8fa;
      --gray-100: #eef0f3;
      --gray-200: #e2e5ea;
      --gray-300: #d0d4da;
      --white: #ffffff;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
      --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
      --radius: 12px;
      --max-width: 1140px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      line-height: 1.65;
      background: var(--gray-100);
    }

    h1, h2, h3, h4 {
      font-family: 'Raleway', sans-serif;
      color: var(--dark);
      line-height: 1.25;
    }

    a {
      color: var(--blue);
      text-decoration: none;
      transition: color 0.2s;
    }

    a:hover {
      color: var(--blue-dark);
    }

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

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* Top bar */
    .top-bar {
      background: var(--dark);
      color: var(--white);
      font-size: 0.875rem;
      padding: 0.6rem 0;
    }

    .top-bar .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem 1.5rem;
    }

    .top-bar a {
      color: var(--white);
      font-weight: 600;
    }

    .top-bar a:hover {
      color: #8ed1fc;
    }

    .top-bar__item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    /* Header */
    .header {
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow-sm);
      overflow: visible;
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .nav {
      display: flex;
      gap: 1rem;
      flex: 1;
      justify-content: center;
      flex-wrap: wrap;
    }

    .nav a {
      color: var(--text);
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .nav a:hover,
    .nav a.is-active {
      color: var(--blue);
    }

    .hero-dot-note {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      padding: 0.75rem 1rem;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 6px;
      border: 1px solid var(--gray-200);
      max-width: 520px;
    }

    .hero-dot-note a {
      font-weight: 600;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      color: var(--dark);
      text-decoration: none;
    }

    .logo:hover {
      color: var(--dark);
    }

    .logo__mark {
      width: 48px;
      height: 48px;
      background: var(--blue);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo__text {
      font-family: 'Raleway', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      line-height: 1.2;
    }

    .logo__text span {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-sm);
    }

    .btn-primary {
      background: var(--blue);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      color: var(--white);
    }

    .btn-red {
      background: var(--red);
      color: var(--white);
    }

    .btn-red:hover {
      background: #c91519;
      color: var(--white);
    }

    .btn-outline {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
    }

    .btn-outline:hover {
      background: var(--blue);
      color: var(--white);
    }

    /* Hero */
    .hero {
      background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 50%, var(--blue-light) 100%);
      padding: 3.25rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(2, 116, 190, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      position: relative;
    }

    .hero-badge {
      display: inline-block;
      background: var(--blue);
      color: var(--white);
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.4rem 0.9rem;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 2.85rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .hero h1 span {
      color: var(--blue);
    }

    .hero-lead {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 1.75rem;
      max-width: 520px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .hero-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--dark);
    }

    .hero-feature svg {
      flex-shrink: 0;
      color: var(--blue);
    }

    .hero-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-200);
    }

    .hero-card-photo {
      margin: -1.5rem -1.5rem 1.1rem;
      border-radius: var(--radius) var(--radius) 0 0;
      overflow: hidden;
      border-bottom: 1px solid var(--gray-200);
    }

    .hero-card-photo img {
      width: 100%;
      aspect-ratio: 16 / 10;
      max-height: 220px;
      object-fit: cover;
      object-position: center;
    }

    .hero-card h2 {
      font-size: 1.25rem;
      margin-bottom: 0.9rem;
      padding-bottom: 0.6rem;
      border-bottom: 3px solid var(--blue);
    }

    .hours-list {
      list-style: none;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 0.4rem 0;
      border-bottom: 1px solid var(--gray-200);
      font-size: 0.95rem;
    }

    .hours-list li:last-child {
      border-bottom: none;
    }

    .hours-list .day {
      font-weight: 600;
      color: var(--dark);
    }

    .hours-list .closed {
      color: var(--text-muted);
      font-style: italic;
    }

    .hero-card-address {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--gray-200);
      font-size: 0.95rem;
    }

    .hero-card-address strong {
      display: block;
      color: var(--dark);
      margin-bottom: 0.25rem;
    }

    /* Benefits */
    .benefits {
      padding: 4.5rem 0;
      background: var(--gray-50);
    }

    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }

    .section-header h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 800;
      margin-bottom: 0.75rem;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 1.05rem;
    }

    .benefits .section-header {
      margin-bottom: 1.5rem;
    }

    .benefits .section-header h2 {
      margin-bottom: 0;
    }

    .benefits-photo {
      max-width: 720px;
      margin: 0 auto 1.5rem;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow);
      background: var(--white);
    }

    .benefits-photo img {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: center top;
    }

    .benefits-intro {
      text-align: center;
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 640px;
      margin: 0 auto 3rem;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .benefit-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      text-align: center;
      border: 1px solid var(--gray-200);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .benefit-icon {
      width: 64px;
      height: 64px;
      background: var(--blue-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      color: var(--blue);
    }

    .benefit-card h3 {
      font-size: 1.15rem;
      margin-bottom: 0.6rem;
    }

    .benefit-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    /* Expect / Insurance */
    .expect {
      padding: 4.5rem 0;
      background: var(--gray-100);
    }

    .expect-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .expect-content h2 {
      font-size: clamp(1.75rem, 3vw, 2.1rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .expect-content > p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }

    .check-list {
      list-style: none;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.6rem 0;
      font-size: 0.98rem;
    }

    .check-list svg {
      flex-shrink: 0;
      margin-top: 0.15rem;
      color: var(--blue);
    }

    .conditions-heading {
      font-family: 'Roboto Slab', serif;
      font-size: 1.15rem;
      font-weight: 600;
      margin: 1.75rem 0 0.35rem;
      color: var(--dark);
    }

    .expect-content > .conditions-intro {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .conditions-grid {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.35rem 1rem;
    }

    .conditions-grid li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.45rem 0;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--dark);
    }

    .conditions-grid svg {
      flex-shrink: 0;
      color: var(--blue);
    }

    .expect-highlight {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      border-left: 4px solid var(--red);
      box-shadow: var(--shadow-sm);
    }

    .expect-highlight h3 {
      font-family: 'Roboto Slab', serif;
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
      color: var(--red);
    }

    .expect-highlight p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .expect-highlight p:last-child {
      margin-bottom: 0;
    }

    .insurance-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .insurance-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--dark);
    }

    .insurance-list svg {
      flex-shrink: 0;
      color: var(--blue);
    }

    .insurance-more {
      margin-top: 0.85rem;
      margin-bottom: 0;
      font-size: 0.92rem;
      font-weight: 600;
      font-style: italic;
      color: var(--text-muted);
    }

    /* Scheduler */
    .scheduler {
      padding: 4.5rem 0 5rem;
      background: var(--gray-50);
    }

    .scheduler-box {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-200);
    }

    .scheduler-box h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 0.5rem;
    }

    .scheduler-subtitle {
      text-align: center;
      color: var(--text-muted);
      margin-bottom: 2rem;
      font-size: 1.05rem;
    }

    .scheduler-iframe-wrap {
      border-radius: 8px;
      overflow: hidden;
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
    }

    .scheduler-iframe-wrap iframe {
      display: block;
      width: 100%;
      min-height: 800px;
      border: none;
    }

    /* Location */
    .location {
      padding: 4.5rem 0;
      background: var(--gray-100);
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: stretch;
    }

    .location-info {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      border: 1px solid var(--gray-200);
    }

    .location-info h2 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .location-detail {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .location-detail svg {
      flex-shrink: 0;
      color: var(--blue);
      margin-top: 0.15rem;
    }

    .location-detail strong {
      display: block;
      color: var(--dark);
      margin-bottom: 0.15rem;
    }

    .location-map {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-200);
      min-height: 320px;
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      min-height: 320px;
      border: none;
      display: block;
    }

    /* CTA band */
    .cta-band {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
      color: var(--white);
      padding: 3.5rem 0;
      text-align: center;
    }

    .cta-band h2 {
      color: var(--white);
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 0.75rem;
    }

    .cta-band p {
      font-size: 1.1rem;
      opacity: 0.92;
      margin-bottom: 1.75rem;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-band .btn-red {
      font-size: 1.05rem;
      padding: 0.9rem 2rem;
    }

    /* Footer */
    .footer {
      background: var(--dark);
      color: #aaa;
      padding: 2.5rem 0;
      font-size: 0.9rem;
    }

    .footer .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .footer a {
      color: #ccc;
    }

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

    .footer-brand {
      font-family: 'Raleway', sans-serif;
      font-weight: 800;
      color: var(--white);
      font-size: 1.05rem;
    }

    .footer-brand span {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: #8ed1fc;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }


/* ===== Shared nav dropdown / mega menu ===== */
.nav {
  position: relative;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-link {
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-item > a:hover,
.nav-item > a.is-active,
.nav-link:hover,
.nav-link.is-active,
.nav-item.is-open > .nav-link {
  color: var(--blue);
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 0.75rem;
  min-width: 520px;
  z-index: 200;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.is-open > .nav-dropdown {
  display: block;
}

.nav-dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 1rem;
  list-style: none;
}

.nav-dropdown a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.nav-dropdown__overview {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0.35rem;
  padding-bottom: 0.5rem !important;
  color: var(--blue) !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
}

.nav-backdrop {
  display: none;
}

/* Condition page layout */
.page-hero {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 50%, var(--blue-light) 100%);
  padding: 2.75rem 0 3rem;
  border-bottom: 1px solid var(--gray-200);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero--solo .container {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span {
  margin: 0 0.4rem;
  opacity: 0.6;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.page-hero h1 span {
  color: var(--blue);
}

.page-hero .hero-lead {
  margin-bottom: 1.5rem;
}

.page-hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  background: var(--white);
}

.page-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero-icon {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--blue-light), #fff 60%);
  color: var(--blue);
}

.page-hero-icon svg {
  width: 88px;
  height: 88px;
}

.page-content {
  padding: 3.5rem 0 4rem;
  background: var(--gray-50);
}

.page-content .container {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 2rem;
  align-items: start;
}

.page-main {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.page-main h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.page-main > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.page-main h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  margin: 1.75rem 0 0.75rem;
}

.page-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.side-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--dark);
}

.side-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.side-card .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.side-card .btn:last-child {
  margin-bottom: 0;
}

.side-card--accent {
  border-left: 4px solid var(--red);
}

.side-card--accent h3 {
  color: var(--red);
}

.related-list {
  list-style: none;
}

.related-list li a {
  display: block;
  padding: 0.4rem 0;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--dark);
}

.related-list li:last-child a {
  border-bottom: none;
}

.related-list li a:hover {
  color: var(--blue);
}

.related-list li a.is-current,
.related-list li a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-light);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 4px;
  border-bottom-color: transparent;
}

.conditions-grid a.condition-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0;
  width: 100%;
}

.conditions-grid a.condition-link:hover {
  color: var(--blue);
}

.conditions-grid a.condition-link small {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.conditions-grid li.has-detail {
  align-items: flex-start;
}

.conditions-grid li.has-detail svg {
  margin-top: 0.2rem;
}

.dot-detail-note {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.img-credit {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: right;
}

.img-credit a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* Override old mobile nav hide */
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .header .container {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    order: 3;
    justify-content: flex-start;
    padding: 0.75rem 0 0.25rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav-item {
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-item > a,
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.25rem;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.75rem;
    display: none;
  }

  .nav-item.is-open > .nav-dropdown {
    display: block;
  }

  .nav-item:hover > .nav-dropdown {
    display: none;
  }

  .nav-item.is-open:hover > .nav-dropdown {
    display: block;
  }

  .nav-dropdown__grid {
    grid-template-columns: 1fr;
  }

  .header-cta .btn-outline {
    display: none;
  }

  .page-hero .container,
  .page-content .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero .container,
  .expect-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }
}

@media (max-width: 600px) {
  .hero-features,
  .insurance-list,
  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .page-main {
    padding: 1.35rem;
  }
}

/* ===== DOT Physicals price callouts ===== */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-price-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
}

.hero-price-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.hero-price-callout__label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
}

.hero-price-callout__amount {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--red);
  line-height: 1;
}

.hero-card-price {
  text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: 8px;
  padding: 1.1rem 1rem;
  margin-bottom: 1.1rem;
}

.hero-card-price__label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.hero-card-price__amount {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
}

/* Conditions links polish */
.conditions-grid li {
  padding: 0;
}

.conditions-grid a.condition-link svg {
  color: var(--blue);
  flex-shrink: 0;
}

.condition-link span {
  display: flex;
  flex-direction: column;
}

/* Ensure top-level nav links keep brand style; dropdown stays sentence case */
.nav > .nav-item > a {
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav > .nav-item > a:hover,
.nav > .nav-item > a.is-active {
  color: var(--blue);
}

/* ===== Homepage service mini-sections (siblings to Primary Care) ===== */
.service-minis {
  padding: 0 0 3.5rem;
  background: var(--gray-100);
}

.service-minis .container {
  display: grid;
  gap: 1.25rem;
}

.service-mini {
  background: var(--white);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.75rem 1.85rem;
}

.service-mini:nth-child(2) {
  border-left-color: var(--blue-dark);
}

.service-mini:nth-child(3) {
  border-left-color: var(--red);
}

.service-mini__content h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--dark);
  margin: 0 0 0.55rem;
}

.service-mini__content p {
  margin: 0 0 1.15rem;
  max-width: 42rem;
  color: var(--text);
  line-height: 1.65;
}

.service-mini__content .btn {
  display: inline-flex;
}

@media (max-width: 980px) {
  .service-minis {
    padding: 0 0 2.5rem;
  }

  .service-mini {
    padding: 1.35rem 1.25rem 1.45rem;
  }
}

