:root {
  --navy: #014d7a;
  --blue: #0397d6;
  --light-blue: #eef8fd;
  --gray: #f6f7f8;
  --text: #24313a;
  --muted: #5d6b75;
  --white: #ffffff;
  --border: #d9e1e7;
}

* {
  box-sizing: border-box;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */

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

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}

.logo img {
  display: block;
  max-height: 80px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 16px;
  border-radius: 999px;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, var(--light-blue), #ffffff);
  padding: 72px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 56px;
  align-items: center;
}

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

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: 3.4rem;
  line-height: 1.08;
  max-width: 900px;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

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

h3 {
  font-size: 1.25rem;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 760px;
}

.hero-subtle {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
}

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

.button.secondary {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: var(--white);
}

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

.hero-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 20px 40px rgba(1, 77, 122, 0.08);
}

.hero-card h2 {
  margin-bottom: 24px;
  font-size: 1.35rem;
}

.hero-card-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 26px 0;
}

.hero-card-note {
  font-size: 0.98rem;
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

/* Shared sections */

.trust-strip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 14px 0;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section.muted {
  background: var(--gray);
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(1, 77, 122, 0.08);
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

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

.feature-list div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.feature-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-links a {
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

/* Page hero */

.page-hero {
  background: linear-gradient(135deg, var(--light-blue), #ffffff);
  padding: 56px 0 58px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
}

/* FAQ */

.faq {
  display: grid;
  gap: 12px;
}

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

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

details p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-panel,
.lead-form {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: var(--white);
}

.contact-phone a {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
}

.contact-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--navy);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

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

/* CTA */

.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
}

.cta-section .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.cta-box {
  text-align: center;
  max-width: 850px;
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p {
  color: #d8e6ee;
  font-size: 1.1rem;
}

/* Footer */

.site-footer {
  background: #013f66;
  color: var(--white);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

/* Mobile */

@media (max-width: 850px) {

  .container {
    width: min(100% - 22px, 1120px);
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0 10px;
    min-height: auto;
    gap: 8px;
  }

  .logo {
    padding: 0;
  }

  .logo img {
    max-height: 42px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .nav-cta {
    padding: 8px 12px;
  }

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

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

  .page-hero {
    padding: 24px 0 26px;
  }

  .section {
    padding: 34px 0;
  }

  h1 {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 1.65rem;
  }

  .page-hero p,
  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .contact-panel,
  .lead-form,
  .hero-card,
  .card {
    padding: 22px;
  }

  .contact-phone a {
    font-size: 1.45rem;
  }

  .lead-form {
    gap: 15px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 11px 12px;
  }

  .site-footer {
    padding: 24px 0;
  }

}

@media (max-width: 850px) {

  .contact-page .page-hero {
    padding: 18px 0 18px;
  }

  .contact-page .page-hero h1 {
    font-size: 1.75rem;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .contact-page .page-hero p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .contact-page .section {
    padding: 18px 0 34px;
  }

}

.form-field-hidden {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  color: var(--text) !important;
}

.checkbox-label input {
  width: auto !important;
  margin-top: 5px;
}

.checkbox-label span {
  line-height: 1.45;
}

.policy-content {
  max-width: 880px;
}

.policy-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

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

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

.policy-content ul {
  padding-left: 22px;
}

.policy-content li {
  margin-bottom: 8px;
}

.form-fieldset {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin: 0;
  display: grid;
  gap: 12px;
}

.form-fieldset legend {
  color: var(--navy);
  font-weight: 800;
  padding: 0 8px;
}

.radio-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 400 !important;
  color: var(--text) !important;
}

.radio-label input {
  width: auto !important;
}

.holiday-hours-form {
  gap: 20px;
}

.simple-header .header-inner {
  justify-content: center;
}

.simple-header-inner {
  min-height: 88px;
}

.simple-header .logo img {
  max-height: 78px;
}

.provider-intake-layout {
  display: grid;
  gap: 30px;
}

.provider-intake-notes {
  max-width: none;
}

.provider-intake-notes {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.provider-intake-notes > h2,
.provider-intake-notes > p {
  grid-column: 1 / -1;
}

.provider-intake-notes .contact-note {
  margin: 0;
}

.provider-intake-form {
  width: 100%;
  max-width: none;
  gap: 24px;
}

.provider-intake-form .form-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 16px;
}

.provider-intake-form .form-fieldset legend,
.provider-intake-form .full-field,
.provider-intake-form .checkbox-label,
.provider-intake-form .field-help {
  grid-column: 1 / -1;
}

.provider-intake-form .form-fieldset label {
  min-width: 0;
}

.provider-intake-form textarea {
  min-height: 96px;
}

.provider-intake-form button[type="submit"] {
  justify-self: start;
}

@media (max-width: 950px) {
  .provider-intake-notes {
    grid-template-columns: 1fr;
  }

  .provider-intake-form .form-fieldset {
    grid-template-columns: 1fr;
  }
}

.provider-intake-page .section {
  padding-top: 52px;
}

.provider-intake-page .page-hero {
  padding-bottom: 48px;
}

.provider-intake-layout {
  gap: 24px;
}

.provider-intake-form {
  gap: 20px;
}

.provider-intake-form .form-fieldset {
  padding: 20px;
  row-gap: 14px;
}

.provider-intake-form .form-fieldset legend {
  font-size: 1.05rem;
}

.provider-intake-form textarea {
  min-height: 84px;
}

.provider-intake-form .full-field textarea {
  min-height: 92px;
}

.field-help {
  color: var(--muted-text);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: -4px 0 4px;
}

.field-help strong {
  color: var(--navy);
}

.provider-intake-page .page-hero {
  padding: 26px 0 30px;
}

.provider-intake-page .page-hero .container {
  max-width: 920px;
}

.provider-intake-page .section {
  padding-top: 36px;
}

.provider-intake-layout {
  gap: 22px;
}

.provider-intake-notes {
  padding: 26px;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.provider-intake-notes > h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.provider-intake-notes > p {
  grid-column: 1 / -1;
  max-width: none;
  margin-bottom: 6px;
}

.provider-intake-notes .contact-note {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.provider-intake-notes .contact-note h3 {
  margin-bottom: 6px;
}

.provider-intake-notes .contact-note p {
  margin-bottom: 0;
}

@media (max-width: 950px) {
  .provider-intake-notes {
    grid-template-columns: 1fr;
  }
}

.provider-intake-page .simple-header-inner {
  min-height: 68px;
}

.provider-intake-page .simple-header .logo img {
  max-height: 64px;
}