:root {
  --bg: #ffffff;
  --bg-soft: #f2fbfb;
  --bg-sky: #edf7fb;
  --ink: #071936;
  --text: #1b3654;
  --muted: #5b6f83;
  --line: #d7e8ec;
  --line-strong: #bdd8de;
  --teal: #078c8c;
  --teal-dark: #056f74;
  --mint: #dff5f1;
  --gold: #c8872d;
  --shadow: 0 18px 46px rgba(11, 49, 75, 0.12);
  --shadow-soft: 0 10px 28px rgba(11, 49, 75, 0.08);
  --radius-card: 8px;
  --radius-control: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.has-sticky-cta {
  padding-bottom: 86px;
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(7, 140, 140, 0.36);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  top: -64px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 12px 34px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 232, 236, 0.88);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(9, 38, 61, 0.1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.1;
}

.brand {
  font-size: 1.24rem;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--teal);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.brand-mark svg,
.phone-icon svg,
.button svg,
.trust-row svg,
.service-icon svg,
.info-item svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 720;
}

.header-nav a {
  padding: 10px 0;
  transition: color 160ms ease;
}

.header-nav a:hover {
  color: var(--teal-dark);
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(215, 232, 236, 0.9);
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(9, 38, 61, 0.05);
}

.phone-icon {
  color: var(--teal);
}

.call-copy strong,
.call-copy small {
  display: block;
}

.call-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.call-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.1;
}

.mobile-call-label {
  display: none;
  font-weight: 840;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg,
.hero-bg img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg {
  inset: 0 0 0 48%;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.2) contrast(1.14) brightness(0.96);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.98) 44%,
      rgba(255, 255, 255, 0.86) 52%,
      rgba(242, 251, 251, 0.24) 64%,
      rgba(255, 255, 255, 0) 76%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 52px 0 52px;
}

.hero-copy {
  width: min(100%, 720px);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 4.45rem;
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: #334b63;
  font-size: 1.36rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 14px 24px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-control);
  font-size: 1.06rem;
  font-weight: 860;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 23px;
  height: 23px;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(7, 140, 140, 0.28);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -50% -70%;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.3) 50%, transparent 64%);
  pointer-events: none;
  transform: translateX(-72%);
  animation: ctaShine 5.4s ease-in-out infinite;
}

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

.hero-actions .button-primary {
  animation: ctaBreath 4.8s ease-in-out infinite;
}

.hero-actions .button-primary svg {
  transform-origin: center;
  animation: phoneNudge 3.8s ease-in-out infinite;
}

.button-secondary {
  color: var(--teal-dark);
  background: #ffffff;
  border: 1px solid rgba(7, 140, 140, 0.25);
  box-shadow: 0 12px 28px rgba(9, 38, 61, 0.08);
}

.button-large {
  min-width: 260px;
}

.number-link {
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 850;
  border-bottom: 2px solid rgba(7, 140, 140, 0.24);
}

.hero-helper {
  margin: 14px 0 0;
  color: #334b63;
  font-size: 1rem;
  font-weight: 680;
}

.hours-note {
  width: fit-content;
  max-width: 560px;
  margin: 14px 0 0;
  padding: 10px 12px;
  color: #6a470d;
  background: #fff6df;
  border: 1px solid #efd39b;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.intent-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 650px;
  margin-top: 16px;
}

.intent-picker span {
  color: #334b63;
  font-size: 0.9rem;
  font-weight: 780;
}

.intent-picker button {
  min-height: 36px;
  padding: 7px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(189, 216, 222, 0.95);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(9, 38, 61, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.1;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.intent-picker button:hover,
.intent-picker button.is-selected {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(7, 140, 140, 0.2);
  transform: translateY(-1px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 650px;
  margin-top: 30px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 720;
}

.trust-row svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--teal-dark);
  background: rgba(223, 245, 241, 0.94);
  border-radius: 50%;
}

.section {
  padding: 86px 0;
}

.services-section {
  background: linear-gradient(180deg, #f3fbfc 0%, #ffffff 100%);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 256px;
  padding: 24px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(215, 232, 236, 0.95);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 140, 140, 0.32);
  box-shadow: var(--shadow);
}

.service-card.is-selected {
  border-color: rgba(7, 140, 140, 0.52);
  box-shadow: 0 18px 42px rgba(7, 140, 140, 0.15);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(7, 140, 140, 0.11), transparent 68%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 50%;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
}

.service-card.is-selected .service-icon {
  background: #c9f0eb;
  transform: translateY(-2px) scale(1.04);
}

.service-icon.urgent {
  color: #926114;
  background: #fff2d8;
}

.service-icon.restorative {
  color: #284d8d;
  background: #eaf2ff;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.22;
}

.service-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-call-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.94rem;
  font-weight: 820;
}

.service-call-link::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h12.2m-5.1-5.3L17.4 12l-5.3 5.3' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h12.2m-5.1-5.3L17.4 12l-5.3 5.3' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 160ms ease;
}

.service-call-link:hover::after {
  transform: translateX(3px);
}

.how-section {
  background: #ffffff;
}

.step-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-list::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.step-list li {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}

.step-number {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  color: #ffffff;
  background: var(--teal);
  border: 8px solid #e9f8f8;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 140, 140, 0.18);
}

.step-list h3,
.inline-cta h3,
.info-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.step-list p,
.inline-cta p,
.info-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 46px;
  padding: 26px;
  background: linear-gradient(90deg, #e9f8f8, #f8fcff);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.info-section {
  background: linear-gradient(180deg, #f7fcfd 0%, #ffffff 100%);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 20px rgba(9, 38, 61, 0.05);
}

.info-item span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 50%;
}

.faq-section {
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 42px;
  align-items: start;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 20px rgba(9, 38, 61, 0.045);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 18px 56px 18px 20px;
  color: var(--ink);
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
}

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

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  padding: 76px 0;
  background: #08223f;
  color: #ffffff;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.final-cta p {
  margin: 10px 0 0;
  color: #c7d6e4;
  font-size: 1.08rem;
}

.selected-service {
  color: #e3fffb;
  font-weight: 720;
}

.disclosure-band {
  padding: 22px 0;
  color: #4f6378;
  background: #f6fbfc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclosure-band p {
  max-width: 1040px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.site-footer {
  padding: 28px 0;
  background: #ffffff;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
}

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

.sticky-call {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 11px 12px 11px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 16px 46px rgba(6, 31, 50, 0.2);
  transform: translateY(118%);
  transition: transform 180ms ease;
}

.sticky-call.is-visible {
  transform: translateY(0);
}

.sticky-call strong,
.sticky-call span {
  display: block;
}

.sticky-call strong {
  font-size: 0.96rem;
  line-height: 1.15;
}

.sticky-call span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.15;
}

.sticky-call .button {
  min-height: 50px;
  padding: 12px 16px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.call-rail {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 38;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100vw - 48px));
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(189, 216, 222, 0.95);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 48px rgba(6, 31, 50, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.call-rail.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.call-rail strong {
  padding-right: 32px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.call-rail span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.call-rail .button {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  padding: 12px 16px;
}

.call-rail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--muted);
  background: #f6fbfc;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.call-rail-close:hover {
  color: var(--ink);
  background: #ffffff;
  transform: rotate(8deg);
}

.call-rail-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.legal-page {
  background: #f7fcfd;
}

.legal-main {
  padding: 56px 0 82px;
}

.legal-shell {
  max-width: 880px;
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.legal-shell h1 {
  margin: 0;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-shell .lead {
  margin: 14px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-shell h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

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

.legal-shell ul {
  padding-left: 1.2rem;
}

.legal-callout {
  margin-top: 28px;
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.legal-callout h2 {
  margin-top: 0;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
}

@keyframes ctaShine {
  0%,
  58% {
    transform: translateX(-72%);
  }

  76%,
  100% {
    transform: translateX(72%);
  }
}

@keyframes ctaBreath {
  0%,
  100% {
    box-shadow: 0 16px 32px rgba(7, 140, 140, 0.28);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 19px 38px rgba(7, 140, 140, 0.36);
    transform: translateY(-1px);
  }
}

@keyframes phoneNudge {
  0%,
  78%,
  100% {
    transform: rotate(0deg);
  }

  82% {
    transform: rotate(-7deg);
  }

  86% {
    transform: rotate(6deg);
  }

  90% {
    transform: rotate(-4deg);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 580px;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

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

@media (max-width: 879px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 1.04rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-call {
    min-height: 42px;
    padding: 8px 11px;
    background: var(--teal);
    color: #ffffff;
    border-color: var(--teal);
  }

  .header-call .phone-icon {
    color: #ffffff;
  }

  .call-copy {
    display: none;
  }

  .mobile-call-label {
    display: inline;
  }

  .hero {
    min-height: 660px;
  }

  .hero-bg {
    inset: 0;
  }

  .hero-bg img {
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 52%, rgba(255, 255, 255, 0.72) 100%),
      linear-gradient(90deg, rgba(242, 251, 251, 0.85), rgba(242, 251, 251, 0.14));
  }

  .hero-content {
    min-height: 660px;
    align-items: flex-start;
    padding: 42px 0 34px;
  }

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

  .hero h1 {
    max-width: 520px;
    font-size: 3.15rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 520px;
    margin-top: 18px;
    font-size: 1.14rem;
    line-height: 1.48;
  }

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

  .intent-picker {
    gap: 7px;
  }

  .intent-picker span {
    flex-basis: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .trust-row span {
    min-height: 44px;
  }

  .trust-row svg {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .info-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-list::before {
    display: none;
  }

  .step-list li {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 16px;
    padding: 0;
    text-align: left;
  }

  .step-number {
    margin: 0;
  }

  .inline-cta,
  .final-cta-inner,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-cta .button,
  .final-cta .button {
    width: 100%;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .sticky-call {
    display: flex;
  }

  .call-rail {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 590px;
  }

  .hero-content {
    min-height: 590px;
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 2.36rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
  }

  .number-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    font-size: 1.06rem;
  }

  .intent-picker {
    margin-top: 14px;
  }

  .intent-picker button {
    flex: 1 1 calc(50% - 8px);
    padding-right: 10px;
    padding-left: 10px;
  }

  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
  }

  .trust-row span {
    gap: 7px;
    min-height: 32px;
    padding: 5px 9px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(189, 216, 222, 0.82);
    border-radius: 999px;
    font-size: 0.78rem;
  }

  .trust-row svg {
    width: 24px;
    height: 24px;
    padding: 5px;
  }

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

  .service-card {
    min-height: auto;
  }

  .info-item {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .info-item span {
    width: 44px;
    height: 44px;
  }

  .legal-main {
    padding: 34px 0 66px;
  }

  .legal-shell {
    padding: 26px 20px;
  }

  .legal-shell h1 {
    font-size: 2.05rem;
  }

  .sticky-call {
    min-height: 78px;
  }

  .sticky-call .button {
    width: auto;
    min-width: 134px;
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  .hero {
    min-height: 568px;
  }

  .hero-content {
    min-height: 568px;
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 18px;
  }

  .hero-helper {
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .intent-picker {
    margin-top: 10px;
  }

  .intent-picker button {
    min-height: 32px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 0.8rem;
  }

  .trust-row {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .button-primary::after {
    display: none;
  }
}
