:root {
  --navy-950: #071e29;
  --navy-900: #0b2b3a;
  --navy-800: #123d4d;
  --teal-700: #08746f;
  --teal-600: #0c8b83;
  --teal-100: #dff5f2;
  --orange-500: #f59d22;
  --orange-600: #de8110;
  --cream: #f7f4ee;
  --white: #fff;
  --ink: #16272f;
  --muted: #5c6d73;
  --line: #dce4e5;
  --shadow: 0 20px 60px rgba(7, 30, 41, .13);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.urgent-bar {
  color: #e9f7f6;
  background: var(--navy-950);
  font-size: .82rem;
  letter-spacing: .015em;
}

.urgent-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.urgent-inner > span,
.urgent-inner a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgent-inner a {
  color: var(--white);
}

.urgent-inner a:hover {
  color: #ffc66e;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48d5a3;
  box-shadow: 0 0 0 4px rgba(72, 213, 163, .13);
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 43, 58, .1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
}

.brand-mark {
  width: 40px;
  height: 40px;
  fill: var(--teal-600);
}

.brand-shine {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: .85;
}

.brand > span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  line-height: 1;
  font-size: 1.07rem;
  letter-spacing: .055em;
}

.brand em {
  color: var(--teal-700);
  font-style: normal;
}

.brand small {
  margin-top: 5px;
  color: #6d7f85;
  font-size: .64rem;
  line-height: 1;
  letter-spacing: .075em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

nav a {
  position: relative;
  color: #314b55;
  font-size: .92rem;
  font-weight: 650;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transition: transform .2s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: .94rem;
  font-weight: 780;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-700);
}

.button-small:hover {
  background: var(--teal-600);
  box-shadow: 0 8px 22px rgba(8, 116, 111, .2);
}

.button-small svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: var(--navy-950);
  background: var(--orange-500);
  box-shadow: 0 10px 30px rgba(245, 157, 34, .2);
}

.button-primary:hover {
  background: #ffad3a;
  box-shadow: 0 14px 34px rgba(245, 157, 34, .3);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .38);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .6);
}

.button-secondary svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-outline {
  color: var(--navy-900);
  border-color: #9fb1b7;
  background: var(--white);
}

.button-outline:hover {
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.hero {
  position: relative;
  min-height: 665px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/fate-plumber-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 26, 36, .98) 0%, rgba(5, 26, 36, .92) 34%, rgba(5, 26, 36, .48) 60%, rgba(5, 26, 36, .08) 100%),
    linear-gradient(0deg, rgba(5, 26, 36, .6) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 90px 86px;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: #9ee5df;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange-500);
}

.eyebrow.dark {
  color: var(--teal-700);
}

.eyebrow.light {
  color: #94ded8;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.3vw, 5.25rem);
  font-weight: 820;
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: #dbe9ed;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.hero-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: #aec1c8;
  font-size: .78rem;
  line-height: 1.5;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: #e5eef0;
  font-size: .86rem;
  font-weight: 650;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #64d7c6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.problem-strip {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--teal-700);
}

.problem-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffd68e;
  background: rgba(4, 56, 55, .35);
}

.problem-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.problem-inner > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.problem-inner strong {
  font-size: 1.03rem;
}

.problem-inner span {
  color: #d6eeec;
  font-size: .9rem;
}

.problem-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0 9px 18px;
  color: var(--white);
  font-size: .93rem;
  font-weight: 800;
  white-space: nowrap;
}

.problem-inner > a:hover {
  color: #ffd48b;
}

.section {
  padding-block: 106px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.section-heading h2,
.provider-copy h2,
.local-grid h2,
.faq-intro h2,
.final-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
}

.section-heading > p {
  max-width: 510px;
  margin: 0 0 5px;
  color: var(--muted);
}

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

.service-card {
  min-height: 280px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #b6cecf;
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.service-card.featured::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border: 30px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--teal-700);
  border-radius: 13px;
  background: var(--teal-100);
}

.service-card.featured .service-icon {
  color: #8fe3dc;
  background: rgba(117, 221, 209, .12);
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
}

.service-card.featured p {
  color: #c8d9de;
}

.service-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f8bc62;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 25px 30px;
  border-radius: 12px;
  background: var(--cream);
}

.service-cta p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.service-cta strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-700);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--navy-900);
}

.provider-section {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 5%, rgba(28, 137, 131, .3), transparent 33%),
    var(--navy-950);
}

.provider-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(55px, 9vw, 110px);
}

.provider-copy h2 {
  max-width: 720px;
}

.provider-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #bdcdd2;
  font-size: 1.05rem;
}

.provider-lead strong {
  color: var(--white);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50%;
  fill: none;
  stroke: var(--navy-950);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  background: #5ed1bd;
}

.check-list span {
  display: flex;
  flex-direction: column;
}

.check-list strong {
  font-size: .9rem;
}

.check-list small {
  margin-top: 6px;
  color: #9fb4bb;
  font-size: .76rem;
  line-height: 1.5;
}

.provider-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.light-link {
  color: #a5ddd8;
}

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

.call-card {
  padding: 40px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.call-card-kicker {
  color: var(--teal-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.call-card h3 {
  margin: 12px 0;
  font-size: 2rem;
}

.call-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .92rem;
}

.call-number {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  font-weight: 850;
  letter-spacing: -.02em;
}

.call-number:hover {
  color: var(--teal-700);
}

.call-number svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  fill: var(--white);
  border-radius: 50%;
  background: var(--teal-700);
}

.call-card-note {
  display: block;
  margin: 8px 0 0 54px;
  color: #829097;
  font-size: .72rem;
}

.call-card hr {
  height: 1px;
  margin: 28px 0 24px;
  border: 0;
  background: var(--line);
}

.call-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
  font-size: .82rem;
}

.call-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.call-card dt {
  color: #75858a;
}

.call-card dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.local-section {
  background: var(--cream);
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 120px);
}

.local-grid h2 {
  max-width: 600px;
}

.local-grid > div:first-child > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
}

.local-facts {
  display: grid;
  gap: 12px;
}

.local-facts article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 25px;
  border: 1px solid #e3dfd5;
  border-radius: 15px;
  background: rgba(255, 255, 255, .75);
}

.local-facts article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal-700);
  font-size: .76rem;
  font-weight: 800;
}

.local-facts h3 {
  margin: 2px 0 7px;
  font-size: 1.07rem;
  letter-spacing: -.02em;
}

.local-facts p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 9vw, 110px);
}

.faq-intro {
  position: sticky;
  top: 30px;
}

.faq-intro p:not(.eyebrow) {
  margin: 25px 0 28px;
  color: var(--muted);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.accordion summary span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  position: relative;
  border-radius: 50%;
  background: var(--teal-100);
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--teal-700);
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > div {
  padding: 0 50px 24px 0;
}

.accordion details p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.final-cta {
  padding-block: 75px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(8, 116, 111, .93), rgba(6, 83, 81, .96)),
    var(--teal-700);
}

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

.final-inner h2 {
  max-width: 720px;
}

.final-inner p:not(.eyebrow) {
  max-width: 690px;
  margin: 20px 0 0;
  color: #d5efec;
}

.final-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.final-actions span {
  color: #d4eeeb;
  font-size: .73rem;
}

.site-footer {
  padding-block: 70px 28px;
  color: #aabac0;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .6fr .8fr;
  gap: 60px;
  padding-bottom: 45px;
}

.footer-brand {
  align-self: start;
  color: var(--white);
}

.footer-brand .brand-mark {
  fill: #43bcb2;
}

.footer-brand small {
  color: #8da2aa;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .82rem;
}

.footer-column strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.disclosure {
  padding: 18px 20px;
  color: #8ea2aa;
  border: 1px solid #1b3a47;
  border-radius: 9px;
  background: rgba(255, 255, 255, .025);
  font-size: .72rem;
  line-height: 1.6;
}

.disclosure strong {
  color: #b7c7cc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 27px;
  color: #748991;
  font-size: .72rem;
}

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

.mobile-call {
  display: none;
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 26, 36, .98), rgba(5, 26, 36, .75) 70%, rgba(5, 26, 36, .48)),
      linear-gradient(0deg, rgba(5, 26, 36, .7), transparent 55%);
  }

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

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

  .provider-copy {
    max-width: 800px;
  }

  .call-card {
    max-width: 520px;
  }

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

  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .final-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

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

  .urgent-inner {
    min-height: 34px;
    justify-content: center;
  }

  .urgent-inner > span {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-inner > .button {
    display: none;
  }

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

  .brand strong {
    font-size: .96rem;
  }

  .brand small {
    font-size: .56rem;
  }

  .hero {
    min-height: 710px;
    align-items: end;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 26, 36, 1) 0%, rgba(5, 26, 36, .96) 42%, rgba(5, 26, 36, .38) 83%, rgba(5, 26, 36, .2) 100%);
  }

  .hero-content {
    padding-block: 150px 46px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: .69rem;
  }

  h1 {
    margin-bottom: 17px;
    font-size: clamp(2.6rem, 12vw, 3.65rem);
  }

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

  .hero-actions {
    display: grid;
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    text-align: center;
  }

  .hero-trust {
    gap: 12px 20px;
    margin-top: 25px;
    padding-top: 19px;
    font-size: .74rem;
  }

  .problem-inner {
    grid-template-columns: auto 1fr;
    gap: 13px;
    padding-block: 17px;
  }

  .problem-icon {
    width: 42px;
    height: 42px;
  }

  .problem-inner strong {
    font-size: .9rem;
  }

  .problem-inner span {
    font-size: .75rem;
    line-height: 1.4;
  }

  .problem-inner > a {
    grid-column: 2;
    padding: 0;
    font-size: .83rem;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .provider-copy h2,
  .local-grid h2,
  .faq-intro h2,
  .final-inner h2 {
    font-size: clamp(2.05rem, 9vw, 2.8rem);
  }

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

  .service-card {
    min-height: 0;
    padding: 25px;
  }

  .service-icon {
    margin-bottom: 22px;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .provider-grid {
    gap: 50px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .provider-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .call-card {
    width: 100%;
    padding: 29px 24px;
  }

  .local-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .local-facts article {
    padding: 21px;
  }

  .faq-grid {
    gap: 45px;
  }

  .accordion summary {
    min-height: 72px;
    font-size: .92rem;
  }

  .accordion details > div {
    padding-right: 20px;
  }

  .final-cta {
    padding-block: 60px;
  }

  .final-actions {
    width: 100%;
    align-items: stretch;
  }

  .final-actions .button {
    width: 100%;
  }

  .final-actions span {
    text-align: center;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .mobile-call {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 8px 12px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    background: var(--navy-950);
    box-shadow: 0 -6px 28px rgba(0, 0, 0, .2);
  }

  .mobile-call a {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--navy-950);
    border-radius: 8px;
    background: var(--orange-500);
    font-weight: 850;
    line-height: 1.15;
  }

  .mobile-call svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
  }

  .mobile-call span {
    display: flex;
    flex-direction: column;
  }

  .mobile-call small {
    margin-bottom: 3px;
    font-size: .66rem;
    font-weight: 650;
    letter-spacing: .03em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
