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

:root {
  --navy: #0A3970;
  --navy-dark: #062B54;
  --teal: #079D9A;
  --teal-dark: #057B78;
  --soft-teal: #E8F7F6;
  --soft-blue: #F4F8FB;
  --white: #FFFFFF;
  --text: #17324A;
  --muted: #5E7184;
  --border: #D7E4EA;
  --shadow: 0 18px 45px rgba(10, 57, 112, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}


.top-bar {
  background: var(--navy-dark);
  color: white;
  font-size: 0.88rem;
}

.top-bar-grid {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.top-bar a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.contact-card a,
.site-footer a {
  color: inherit;
  font-weight: 800;
}

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

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: min(260px, 46vw);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid transparent;
}

.nav-button,
.button.primary {
  background: var(--teal);
  color: white !important;
  box-shadow: 0 10px 22px rgba(7, 157, 154, 0.22);
}

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

.button.light {
  background: white;
  color: var(--navy);
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
}

.nav-button:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.hero {
  padding: 84px 0 70px;
  background:
    radial-gradient(circle at 85% 10%, rgba(7,157,154,0.20), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, #F4FAFB 48%, #EAF7F6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.05em;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.hero-copy {
  font-size: 1.2rem;
  color: #35536E;
  max-width: 750px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}

.microcopy {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.hero-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin: 16px 0;
  color: #405A70;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--soft-teal);
  color: var(--teal-dark);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section {
  padding: 78px 0;
}

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

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
}

.text-stack p {
  margin-top: 0;
  color: #3F586F;
  font-size: 1.04rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  color: #4A6278;
  margin: 0;
  font-size: 1.04rem;
}

.cards {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.step,
.contact-card,
.notice-card,
.legal-grid article {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(10, 57, 112, 0.06);
}

.card p,
.step p,
.notice-card p,
.legal-grid p {
  color: #425D73;
  margin-bottom: 0;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--soft-teal);
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 14px;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price {
  color: var(--teal-dark) !important;
  font-size: 2.6rem;
  font-weight: 900;
  margin: 4px 0 8px !important;
}

.price-card .button {
  margin-top: auto;
}

.featured-price {
  border-color: rgba(7, 157, 154, 0.45);
  box-shadow: 0 18px 45px rgba(7, 157, 154, 0.14);
}

.plan-subtitle {
  margin-top: -4px !important;
  font-weight: 700;
  color: var(--navy) !important;
}

.plan-list {
  padding: 0;
  margin: 14px 0 24px;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: #425D73;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.provider-section {
  background: linear-gradient(180deg, white, #F9FCFD);
}

.provider-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.provider-photo-wrap {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.provider-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.provider-copy p {
  color: #425D73;
  font-size: 1.04rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

details p {
  color: #425D73;
  margin-bottom: 0;
}

.cta-section {
  padding: 70px 0;
  background: white;
}

.cta-card {
  background: linear-gradient(135deg, var(--navy), #0F587A);
  color: white;
  border-radius: 34px;
  padding: 54px 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  color: white;
}

.cta-card p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #E6F5F6;
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card {
  margin-top: 20px;
}

.contact-card p {
  margin: 8px 0;
}

.notice-card h3 + p {
  margin-top: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.site-footer {
  background: var(--navy-dark);
  color: white;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  width: 220px;
  background: white;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 4px 0;
  color: #DCECF2;
}

@media (max-width: 1020px) {
  .main-nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
  }

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

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .provider-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.two,
  .cards.service-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .provider-photo-wrap {
    max-width: 480px;
  }
}

@media (max-width: 620px) {
  .top-bar-grid {
    justify-content: flex-start;
    gap: 8px 18px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 210px;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .section {
    padding: 56px 0;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}


.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.learn-more-link span {
  transition: transform 0.18s ease;
}

.learn-more-link:hover span {
  transform: translateX(4px);
}

.service-card-featured {
  border-color: rgba(7, 157, 154, 0.45);
  box-shadow: 0 18px 45px rgba(7, 157, 154, 0.12);
}

.subpage-hero {
  padding: 72px 0 60px;
  background:
    radial-gradient(circle at 86% 10%, rgba(7,157,154,0.18), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, #F4FAFB 48%, #EAF7F6 100%);
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.subpage-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.35rem);
}

.price-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.service-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(10, 57, 112, 0.06);
  display: flex;
  flex-direction: column;
}

.service-detail-card.featured {
  border-color: rgba(7, 157, 154, 0.45);
  box-shadow: 0 18px 45px rgba(7, 157, 154, 0.14);
}

.visit-price {
  margin: 12px 0 4px;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--teal-dark);
  font-weight: 900;
}

.visit-meta {
  margin: 0 0 18px !important;
  color: var(--muted) !important;
  font-weight: 700;
}

.service-detail-card .button {
  margin-top: auto;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(10, 57, 112, 0.06);
}

.back-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 22px;
}

@media (max-width: 1020px) {
  .subpage-hero-grid,
  .service-detail-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }
}

/* Privacy policy page */
.content-narrow {
  max-width: 900px;
}

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(10, 57, 112, 0.06);
}

.service-card p,
.content-narrow p {
  color: #425D73;
  line-height: 1.75;
}

.site-footer a,
.pp-offer-small a,
.pp-offer-consent a,
.notice-card a,
.legal-grid a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .service-grid.three {
    grid-template-columns: 1fr;
  }
}

.button.ghost-light {
  margin-left: 12px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.75);
}

.button.ghost-light:hover {
  background: rgba(255,255,255,0.1);
}

@media (max-width: 640px) {
  .button.ghost-light {
    margin-left: 0;
    margin-top: 12px;
  }
}


.contact-form-card {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(10, 57, 112, 0.06);
}

.contact-form-card h3 {
  margin-top: 0;
}

.form-intro,
.form-disclaimer {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.public-contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.public-contact-form label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form select,
.public-contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  color: var(--text);
  font: inherit;
}

.public-contact-form input:focus,
.public-contact-form select:focus,
.public-contact-form textarea:focus {
  outline: 3px solid rgba(7,157,154,0.16);
  border-color: var(--teal);
}

.sms-consent-box {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--soft-blue);
}

.sms-consent-box input {
  margin-top: 4px;
}

.sms-consent-box span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  font-weight: 600;
}

.sms-consent-box a,
.form-disclaimer a {
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.hero-provider-photo {
  margin: 8px 0 26px;
  max-width: 460px;
}

.hero-provider-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-provider-photo figcaption {
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 780px) {
  .hero-provider-photo {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-provider-photo figcaption {
    text-align: center;
  }
}


/* Precision Primary v18 readability and scale adjustment
   This makes the site feel less zoomed out on desktop while preserving mobile responsiveness. */
html {
  font-size: 17px;
}

body {
  font-size: 1rem;
}

.container {
  max-width: 1120px;
}

.hero {
  padding-top: clamp(3.25rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.25rem, 6vw, 5.5rem);
}

.hero-grid,
.subpage-hero-grid {
  gap: clamp(2rem, 4vw, 3.5rem);
}

.hero-content {
  max-width: 650px;
}

.hero h1,
.hero-title,
h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.04;
}

.hero-copy {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.hero-provider-photo {
  max-width: 680px;
  width: 100%;
}

.hero-provider-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.hero-panel {
  transform: scale(1.03);
  transform-origin: center;
}

.section {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.service-card,
.card,
.price-card {
  font-size: 1rem;
}

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }

  .container {
    max-width: 100%;
  }

  .hero-panel {
    transform: none;
  }

  .hero h1,
  .hero-title,
  h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .hero-provider-photo img {
    max-height: none;
  }
}

/* Precision Primary v19 customer readability upgrade
   Larger text, stronger contrast, roomier spacing, and bigger touch targets. */
:root {
  --text: #102C44;
  --muted: #3E566D;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.container {
  width: min(1080px, calc(100% - 48px));
}

.top-bar {
  font-size: 1rem;
}

.top-bar-grid {
  min-height: 48px;
  gap: 18px 28px;
}

.nav-wrap {
  min-height: 96px;
}

.brand img {
  width: min(300px, 52vw);
}

.main-nav {
  font-size: 1.03rem;
  gap: 22px;
}

.nav-button,
.button {
  min-height: 56px;
  padding: 15px 26px;
  font-size: 1.02rem;
  letter-spacing: 0.005em;
}

.hero {
  padding: clamp(4.25rem, 7vw, 6.75rem) 0 clamp(4rem, 7vw, 6.25rem);
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.4rem, 5vw, 4rem);
}

.eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-copy {
  font-size: clamp(1.25rem, 1.75vw, 1.45rem);
  line-height: 1.75;
  color: #203F5A;
  max-width: 780px;
}

.microcopy {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #40576D;
}

.hero-panel,
.card,
.step,
.contact-card,
.notice-card,
.legal-grid article,
.service-card,
.service-detail-card,
.info-panel,
.contact-form-card {
  padding: clamp(1.7rem, 3vw, 2.25rem);
  border-radius: 28px;
}

.hero-panel {
  transform: none;
}

.hero-provider-photo {
  max-width: 760px;
}

.hero-provider-photo img {
  max-height: 620px;
  border-radius: 34px;
}

.hero-provider-photo figcaption {
  font-size: 1.08rem;
  line-height: 1.5;
}

.section {
  padding-top: clamp(4.75rem, 7.5vw, 6.75rem);
  padding-bottom: clamp(4.75rem, 7.5vw, 6.75rem);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.section-heading p,
.text-stack p,
.provider-copy p,
.card p,
.step p,
.notice-card p,
.legal-grid p,
.service-card p,
.content-narrow p,
details p,
.contact-card p,
.info-panel p,
.service-detail-card p {
  font-size: 1.09rem;
  line-height: 1.78;
  color: #304E67;
}

.cards {
  gap: 28px;
}

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

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 1.15rem;
}

.check-list li,
.plan-list li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #304E67;
  margin: 14px 0;
}

.check-list li {
  padding-left: 40px;
}

.check-list li::before {
  width: 28px;
  height: 28px;
}

.price,
.visit-price {
  font-size: clamp(2.65rem, 4.4vw, 3.3rem);
}

.price-pill {
  font-size: 1.02rem;
  padding: 12px 18px;
}

.learn-more-link {
  font-size: 1.08rem;
  margin-top: 24px;
}

.faq-grid {
  gap: 20px;
}

details {
  padding: 24px 26px;
}

summary {
  font-size: 1.12rem;
  line-height: 1.45;
}

.contact-form-card h3 {
  font-size: 1.5rem;
}

.form-intro,
.form-disclaimer {
  font-size: 1rem;
  line-height: 1.7;
  color: #40576D;
}

.public-contact-form {
  gap: 18px;
}

.public-contact-form label {
  font-size: 1.03rem;
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form select,
.public-contact-form textarea {
  min-height: 54px;
  padding: 15px 16px;
  font-size: 1.05rem;
  border-radius: 16px;
}

.sms-consent-box {
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px;
}

.sms-consent-box input {
  width: 22px;
  height: 22px;
}

.sms-consent-box span {
  font-size: 0.98rem;
  line-height: 1.72;
  color: #304E67;
}

.site-footer {
  font-size: 1.02rem;
}

.site-footer p,
.site-footer a {
  line-height: 1.7;
}

.footer-grid {
  align-items: flex-start;
}

.footer-logo {
  width: 260px;
}

/* Keep compliance-heavy pages readable without looking crowded. */
.content-narrow,
.legal-grid,
.service-detail-grid,
.service-grid.three {
  font-size: 1.05rem;
}

@media (max-width: 1020px) {
  html {
    font-size: 17.5px;
  }

  .main-nav {
    font-size: 1.08rem;
  }

  .cards.service-grid,
  .cards.three,
  .service-detail-grid,
  .service-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }

  .provider-photo-wrap {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 17px;
  }

  .container {
    width: min(100% - 30px, 1080px);
  }

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

  .brand img {
    width: min(245px, 70vw);
  }

  .nav-wrap {
    min-height: 86px;
  }

  .hero {
    padding: 3.35rem 0 3rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  h3 {
    font-size: 1.28rem;
  }

  .hero-copy,
  .section-heading p,
  .text-stack p,
  .provider-copy p,
  .card p,
  .step p,
  .notice-card p,
  .legal-grid p,
  .service-card p,
  .content-narrow p,
  details p,
  .contact-card p,
  .info-panel p,
  .service-detail-card p {
    font-size: 1.03rem;
    line-height: 1.72;
  }

  .section {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .button,
  .nav-button {
    width: 100%;
    min-height: 58px;
    font-size: 1.04rem;
  }

  .hero-provider-photo {
    max-width: 100%;
  }

  .hero-provider-photo img {
    border-width: 6px;
    border-radius: 26px;
  }

  .card,
  .step,
  .contact-card,
  .notice-card,
  .legal-grid article,
  .service-card,
  .service-detail-card,
  .info-panel,
  .contact-form-card {
    padding: 1.35rem;
  }

  .sms-consent-box span {
    font-size: 0.93rem;
  }

  .footer-logo {
    width: 230px;
  }
}

/* Precision Primary v20 closer-view upgrade
   Makes the website feel more zoomed in and easier for patients to read. */
html {
  font-size: 19px;
}

body {
  font-size: 1.08rem;
  line-height: 1.82;
}

.container {
  width: min(940px, calc(100% - 44px));
}

.top-bar-grid,
.nav-wrap {
  width: min(1040px, calc(100% - 44px));
}

.nav-wrap {
  min-height: 104px;
}

.brand img {
  width: min(320px, 58vw);
}

.main-nav {
  font-size: 1.06rem;
  gap: 24px;
}

.nav-button,
.button {
  min-height: 62px;
  padding: 17px 30px;
  font-size: 1.08rem;
}

.hero,
.subpage-hero {
  padding-top: clamp(3.8rem, 6vw, 5.4rem);
  padding-bottom: clamp(3.8rem, 6vw, 5.4rem);
}

.hero-grid,
.subpage-hero-grid {
  grid-template-columns: 1fr;
  gap: 2.2rem;
}

.hero-content,
.section-heading,
.content-narrow {
  max-width: 860px;
}

.hero-panel {
  max-width: 860px;
}

.hero-provider-photo {
  max-width: 780px;
  margin-top: 1.15rem;
}

.hero-provider-photo img {
  max-height: 640px;
}

h1 {
  font-size: clamp(3.1rem, 7.2vw, 5rem);
  line-height: 1.03;
}

.subpage-hero h1 {
  font-size: clamp(2.85rem, 6.6vw, 4.6rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 3.25rem);
}

h3 {
  font-size: 1.45rem;
}

.eyebrow {
  font-size: 0.98rem;
}

.hero-copy {
  font-size: clamp(1.35rem, 2.1vw, 1.55rem);
  line-height: 1.7;
  max-width: 860px;
}

.microcopy {
  font-size: 1.08rem;
}

.section {
  padding-top: clamp(4rem, 6.5vw, 5.75rem);
  padding-bottom: clamp(4rem, 6.5vw, 5.75rem);
}

.section-heading p,
.text-stack p,
.provider-copy p,
.card p,
.step p,
.notice-card p,
.legal-grid p,
.service-card p,
.content-narrow p,
details p,
.contact-card p,
.info-panel p,
.service-detail-card p,
.form-intro,
.form-disclaimer {
  font-size: 1.14rem;
  line-height: 1.78;
}

.cards.service-grid,
.cards.three,
.service-detail-grid,
.service-grid.three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.two,
.contact-grid,
.legal-grid,
.split,
.provider-grid {
  grid-template-columns: 1fr;
}

.card,
.step,
.contact-card,
.notice-card,
.legal-grid article,
.service-card,
.service-detail-card,
.info-panel,
.contact-form-card,
.hero-panel {
  padding: clamp(1.8rem, 3.2vw, 2.55rem);
}

.check-list li,
.plan-list li {
  font-size: 1.12rem;
}

.price,
.visit-price {
  font-size: clamp(3rem, 5vw, 3.65rem);
}

.learn-more-link,
summary,
.public-contact-form label {
  font-size: 1.14rem;
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form select,
.public-contact-form textarea {
  min-height: 62px;
  font-size: 1.12rem;
  padding: 17px 18px;
}

.sms-consent-box span {
  font-size: 1.02rem;
  line-height: 1.72;
}

.site-footer {
  font-size: 1.08rem;
}

.footer-grid {
  max-width: 940px;
  margin: 0 auto;
}

@media (min-width: 1180px) {
  .container {
    width: 940px;
  }

  .hero-provider-photo {
    margin-left: 0;
  }
}

@media (max-width: 1020px) {
  html {
    font-size: 18px;
  }

  .container,
  .top-bar-grid,
  .nav-wrap {
    width: min(100% - 36px, 940px);
  }

  .cards.service-grid,
  .cards.three,
  .service-detail-grid,
  .service-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 17.5px;
  }

  .container,
  .top-bar-grid,
  .nav-wrap {
    width: min(100% - 26px, 940px);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .hero-copy,
  .section-heading p,
  .text-stack p,
  .provider-copy p,
  .card p,
  .step p,
  .notice-card p,
  .legal-grid p,
  .service-card p,
  .content-narrow p,
  details p,
  .contact-card p,
  .info-panel p,
  .service-detail-card p,
  .form-intro,
  .form-disclaimer {
    font-size: 1.08rem;
  }
}

/* Precision Primary v21 balanced-view adjustment
   Slightly zooms the site back out from v20 while keeping text customer-friendly. */
html {
  font-size: 18px;
}

body {
  font-size: 1.03rem;
  line-height: 1.72;
}

.container {
  width: min(1040px, calc(100% - 44px));
}

.top-bar-grid,
.nav-wrap {
  width: min(1120px, calc(100% - 44px));
}

.nav-wrap {
  min-height: 94px;
}

.brand img {
  width: min(290px, 52vw);
}

.main-nav {
  font-size: 1rem;
  gap: 20px;
}

.nav-button,
.button {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 1rem;
}

.hero,
.subpage-hero {
  padding-top: clamp(3.4rem, 5.8vw, 5rem);
  padding-bottom: clamp(3.4rem, 5.8vw, 5rem);
}

.hero-grid,
.subpage-hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-content,
.section-heading,
.content-narrow {
  max-width: 860px;
}

.hero-panel {
  max-width: none;
}

.hero-provider-photo {
  max-width: 620px;
  margin-top: 0.8rem;
}

.hero-provider-photo img {
  max-height: 540px;
}

h1 {
  font-size: clamp(2.65rem, 5.7vw, 4.5rem);
  line-height: 1.05;
}

.subpage-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.eyebrow {
  font-size: 0.88rem;
}

.hero-copy {
  font-size: clamp(1.14rem, 1.45vw, 1.32rem);
  line-height: 1.65;
  max-width: 760px;
}

.microcopy {
  font-size: 0.98rem;
}

.section {
  padding-top: clamp(3.7rem, 6vw, 5.25rem);
  padding-bottom: clamp(3.7rem, 6vw, 5.25rem);
}

.section-heading p,
.text-stack p,
.provider-copy p,
.card p,
.step p,
.notice-card p,
.legal-grid p,
.service-card p,
.content-narrow p,
details p,
.contact-card p,
.info-panel p,
.service-detail-card p,
.form-intro,
.form-disclaimer {
  font-size: 1.03rem;
  line-height: 1.68;
}

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

.cards.two,
.contact-grid,
.legal-grid,
.split,
.provider-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.step,
.contact-card,
.notice-card,
.legal-grid article,
.service-card,
.service-detail-card,
.info-panel,
.contact-form-card,
.hero-panel {
  padding: clamp(1.45rem, 2.5vw, 2rem);
}

.check-list li,
.plan-list li {
  font-size: 1rem;
}

.price,
.visit-price {
  font-size: clamp(2.45rem, 4vw, 3.15rem);
}

.learn-more-link,
summary,
.public-contact-form label {
  font-size: 1.03rem;
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form select,
.public-contact-form textarea {
  min-height: 54px;
  font-size: 1.03rem;
  padding: 14px 15px;
}

.sms-consent-box span {
  font-size: 0.95rem;
  line-height: 1.65;
}

.site-footer {
  font-size: 1rem;
}

.footer-grid {
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 1020px) {
  html {
    font-size: 17px;
  }

  .container,
  .top-bar-grid,
  .nav-wrap {
    width: min(100% - 34px, 1040px);
  }

  .hero-grid,
  .subpage-hero-grid,
  .cards.service-grid,
  .cards.three,
  .cards.two,
  .service-detail-grid,
  .service-grid.three,
  .contact-grid,
  .legal-grid,
  .split,
  .provider-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 16.5px;
  }

  .container,
  .top-bar-grid,
  .nav-wrap {
    width: min(100% - 28px, 1040px);
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.55rem);
  }

  .hero-copy,
  .section-heading p,
  .text-stack p,
  .provider-copy p,
  .card p,
  .step p,
  .notice-card p,
  .legal-grid p,
  .service-card p,
  .content-narrow p,
  details p,
  .contact-card p,
  .info-panel p,
  .service-detail-card p,
  .form-intro,
  .form-disclaimer {
    font-size: 1.01rem;
  }
}

/* Precision Primary v22 fine-tuned readability
   Slightly more zoomed in than v21, without returning to the oversized v20 view. */
html {
  font-size: 18.5px;
}

body {
  font-size: 1.05rem;
  line-height: 1.74;
}

.container {
  width: min(1000px, calc(100% - 42px));
}

.top-bar-grid,
.nav-wrap {
  width: min(1080px, calc(100% - 42px));
}

.nav-wrap {
  min-height: 98px;
}

.brand img {
  width: min(305px, 54vw);
}

.main-nav {
  font-size: 1.02rem;
  gap: 21px;
}

.nav-button,
.button {
  min-height: 57px;
  padding: 15px 26px;
  font-size: 1.03rem;
}

.hero,
.subpage-hero {
  padding-top: clamp(3.6rem, 6vw, 5.35rem);
  padding-bottom: clamp(3.6rem, 6vw, 5.35rem);
}

.hero-grid,
.subpage-hero-grid {
  gap: clamp(2.1rem, 4.2vw, 3.25rem);
}

.hero-provider-photo {
  max-width: 660px;
}

.hero-provider-photo img {
  max-height: 570px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  line-height: 1.04;
}

.subpage-hero h1 {
  font-size: clamp(2.5rem, 5.25vw, 4.15rem);
}

h2 {
  font-size: clamp(2.08rem, 3.9vw, 3.12rem);
}

h3 {
  font-size: 1.31rem;
}

.eyebrow {
  font-size: 0.91rem;
}

.hero-copy {
  font-size: clamp(1.2rem, 1.6vw, 1.38rem);
  line-height: 1.68;
  max-width: 790px;
}

.microcopy {
  font-size: 1.01rem;
}

.section {
  padding-top: clamp(3.9rem, 6.25vw, 5.55rem);
  padding-bottom: clamp(3.9rem, 6.25vw, 5.55rem);
}

.section-heading p,
.text-stack p,
.provider-copy p,
.card p,
.step p,
.notice-card p,
.legal-grid p,
.service-card p,
.content-narrow p,
details p,
.contact-card p,
.info-panel p,
.service-detail-card p,
.form-intro,
.form-disclaimer {
  font-size: 1.065rem;
  line-height: 1.72;
}

.card,
.step,
.contact-card,
.notice-card,
.legal-grid article,
.service-card,
.service-detail-card,
.info-panel,
.contact-form-card,
.hero-panel {
  padding: clamp(1.55rem, 2.7vw, 2.15rem);
}

.check-list li,
.plan-list li {
  font-size: 1.035rem;
}

.price,
.visit-price {
  font-size: clamp(2.6rem, 4.2vw, 3.3rem);
}

.learn-more-link,
summary,
.public-contact-form label {
  font-size: 1.065rem;
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form select,
.public-contact-form textarea {
  min-height: 57px;
  font-size: 1.065rem;
  padding: 15px 16px;
}

.sms-consent-box span {
  font-size: 0.98rem;
  line-height: 1.68;
}

.site-footer {
  font-size: 1.03rem;
}

.footer-grid {
  max-width: 1000px;
}

@media (max-width: 1020px) {
  html {
    font-size: 17.5px;
  }

  .container,
  .top-bar-grid,
  .nav-wrap {
    width: min(100% - 32px, 1000px);
  }
}

@media (max-width: 700px) {
  html {
    font-size: 17px;
  }

  .container,
  .top-bar-grid,
  .nav-wrap {
    width: min(100% - 26px, 1000px);
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.98rem, 9vw, 2.65rem);
  }

  .hero-copy,
  .section-heading p,
  .text-stack p,
  .provider-copy p,
  .card p,
  .step p,
  .notice-card p,
  .legal-grid p,
  .service-card p,
  .content-narrow p,
  details p,
  .contact-card p,
  .info-panel p,
  .service-detail-card p,
  .form-intro,
  .form-disclaimer {
    font-size: 1.04rem;
  }
}

/* v23 update: make the 1-5 process steps wider and easier to read */
.steps {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.step {
  min-width: 0;
  min-height: 235px;
  padding: clamp(1.75rem, 2.8vw, 2.35rem);
}

.step h3 {
  font-size: 1.42rem;
  line-height: 1.22;
  margin-bottom: 0.7rem;
}

.step p {
  font-size: 1.08rem;
  line-height: 1.72;
}

.step span {
  width: 42px;
  height: 42px;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

@media (max-width: 920px) {
  .steps {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}

@media (max-width: 620px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }
}
