:root {
  --ink: #17242e;
  --muted: #53636e;
  --paper: #fffdf8;
  --cream: #f5f0e7;
  --navy: #102b3a;
  --navy-2: #194457;
  --orange: #f05a32;
  --orange-dark: #c83d19;
  --mint: #c9eadf;
  --line: #d9dfdf;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 43, 58, 0.12);
  --radius-sm: 0.65rem;
  --radius: 1.15rem;
  --radius-lg: 1.75rem;
  --content: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--navy-2);
  text-underline-offset: 0.18em;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #ffb39e;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.narrow {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 7vw, 5.6rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

p {
  margin-top: 0;
}

.lead {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.topbar {
  padding: 0.45rem 1rem;
  color: #dbe8ec;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 43, 58, 0.1);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--orange);
  border-radius: 50% 50% 50% 0.45rem;
  transform: rotate(-8deg);
}

.brand-mark svg {
  width: 1.45rem;
  transform: rotate(8deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a:not(.button) {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-links a[aria-current="page"]:not(.button),
.nav-links a:not(.button):hover {
  color: var(--orange-dark);
}

.menu-toggle {
  width: 2.8rem;
  height: 2.8rem;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.25rem;
}

.button {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border: 2px solid var(--orange);
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(240, 90, 50, 0.22);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 10px 28px rgba(200, 61, 25, 0.26);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
  box-shadow: none;
}

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

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(4.5rem, 8vw, 7.8rem) 0 clamp(4rem, 7vw, 6.5rem);
  background: var(--cream);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 28rem;
  height: 28rem;
  top: -14rem;
  right: -8rem;
  background: rgba(201, 234, 223, 0.72);
}

.hero::after {
  width: 12rem;
  height: 12rem;
  bottom: -5rem;
  left: -4rem;
  border: 2.5rem solid rgba(240, 90, 50, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.hero-copy {
  max-width: 45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin: 1.6rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-row li::before {
  width: 0.58rem;
  height: 0.58rem;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(16, 43, 58, 0.1);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

.airflow {
  animation: airflow 2.4s ease-in-out infinite;
}

.airflow:nth-of-type(2) {
  animation-delay: 0.35s;
}

.airflow:nth-of-type(3) {
  animation-delay: 0.7s;
}

@keyframes airflow {
  0%, 100% { opacity: 0.25; transform: translateX(-3px); }
  50% { opacity: 1; transform: translateX(5px); }
}

.mini-card {
  position: absolute;
  right: -1.1rem;
  bottom: -1rem;
  max-width: 13rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.4;
}

.mini-card strong {
  display: block;
  color: var(--orange-dark);
}

.proof-strip {
  padding: 1rem 0;
  color: #d9e8ec;
  background: var(--navy);
}

.proof-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  text-align: center;
}

.proof-strip strong {
  color: var(--white);
}

.cost-strip {
  padding: 2rem 0;
  border-block: 1px solid var(--line);
  background: #edf7f4;
}

.cost-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cost-strip h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.cost-strip p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
}

.cost-strip .button {
  flex: 0 0 auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

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

.section-dark {
  color: #dbe7ea;
  background: var(--navy);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .card {
  color: var(--ink);
}

.section-dark .card h3 {
  color: var(--navy);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 1.4rem;
}

.section-actions p {
  max-width: 35rem;
  margin: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  height: 100%;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.price-grid {
  align-items: stretch;
}

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

.price-label {
  margin-bottom: 0.25rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.price-value {
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.price-card-accent {
  color: #e9f1f3;
  background: var(--navy);
  border-color: var(--navy);
}

.price-card-accent h3,
.price-card-accent .price-label {
  color: var(--white);
}

.local-checklist {
  align-self: start;
  border-top: 0.35rem solid var(--orange);
}

.icon-card svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.number-card {
  position: relative;
  padding-top: 4.2rem;
}

.number {
  position: absolute;
  top: 1.25rem;
  left: 1.35rem;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.city-card {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.city-card:hover {
  color: var(--ink);
  border-color: rgba(240, 90, 50, 0.5);
  box-shadow: 0 15px 35px rgba(15, 43, 58, 0.08);
  transform: translateY(-4px);
}

.city-card span {
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.check-list,
.plain-list {
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 0.7rem 0;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--navy);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.plain-list li::before {
  position: absolute;
  top: 0.65rem;
  left: 0.3rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 5.5rem);
}

.sticky-copy {
  position: sticky;
  top: 7.2rem;
}

.quote-form {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-form h2,
.quote-form h3 {
  margin-bottom: 0.5rem;
}

.quote-embed {
  overflow: hidden;
}

.google-form-frame {
  margin: 1.15rem -0.8rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f5f3ef;
  border-radius: var(--radius-sm);
}

.google-form-frame iframe {
  width: 100%;
  height: 1420px;
  display: block;
  border: 0;
  background: #f5f3ef;
}

.form-fallback {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-full {
  grid-column: 1 / -1;
}

label,
legend {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #aab7bc;
  color: var(--ink);
  background: var(--white);
  border-radius: 0.55rem;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(240, 90, 50, 0.16);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  align-items: start;
  gap: 0.7rem;
}

.checkbox-row input {
  width: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.25rem;
}

.checkbox-row label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-note,
.microcopy {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.optional-label {
  color: var(--muted);
  font-weight: 600;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #82bfae;
  color: var(--navy);
  background: #edf9f5;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.disclosure {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--orange);
  background: #fff2ed;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #63311f;
  font-size: 0.88rem;
}

.source-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.source-card svg {
  width: 1.6rem;
  flex: 0 0 auto;
  color: var(--orange);
}

.source-card a {
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  content: "+";
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.faq-answer {
  padding: 0 3rem 1.25rem 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.breadcrumb {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.35rem;
  content: "/";
  color: #94a0a6;
}

.page-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--cream);
}

.page-hero h1 {
  max-width: 54rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  align-items: start;
  gap: 4rem;
}

.article-content {
  max-width: 48rem;
}

.article-content h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.article-content h3 {
  margin-top: 2rem;
}

.article-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.article-content th,
.article-content td {
  padding: 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: var(--navy);
  background: var(--cream);
}

.aside-card {
  position: sticky;
  top: 7rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.aside-card h2,
.aside-card h3 {
  font-size: 1.35rem;
}

.aside-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem);
  color: #d9e8ec;
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  max-width: 45rem;
  color: var(--white);
}

.cta-band p {
  max-width: 42rem;
}

.cta-band .button {
  margin-top: 0.75rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  color: #c2d1d6;
  background: #0b202b;
}

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

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  color: #dce8eb;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

.footer-links li {
  margin: 0.45rem 0;
}

.footer-brand {
  max-width: 22rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin-bottom: 0.55rem;
}

.mobile-cta {
  display: none;
}

.center {
  text-align: center;
}

.center .lead,
.center .section-heading {
  margin-inline: auto;
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  color: var(--navy);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.8rem;
  margin: 0.8rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-meta span + span::before {
  margin-right: 0.8rem;
  content: "\2022";
  color: #9aa5aa;
}

.article-meta a {
  font-weight: 750;
}

.research-summary {
  margin: 1.8rem 0;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border-left: 0.35rem solid var(--orange);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.research-summary h2,
.research-summary h3 {
  margin-top: 0;
}

.source-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.notice {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid #e4c98a;
  background: #fff8e4;
  border-radius: var(--radius-sm);
  color: #544219;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: calc(4.6rem + 1px) 0 auto;
    max-height: calc(100vh - 4.6rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: auto;
    padding: 1.2rem 1rem 2rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(15, 43, 58, 0.14);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a:not(.button) {
    padding: 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .button {
    margin-top: 1rem;
  }

  .hero-grid,
  .split,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 35rem;
    margin-inline: auto;
  }

  .sticky-copy,
  .aside-card {
    position: static;
  }

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

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

@media (max-width: 620px) {
  body {
    padding-bottom: 4.6rem;
  }

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

  .topbar {
    padding-inline: 0.5rem;
    font-size: 0.7rem;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

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

  .cost-strip-inner,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cost-strip .button,
  .section-actions .button {
    width: 100%;
  }

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

  .mini-card {
    right: 0.5rem;
    bottom: -1.4rem;
  }

  .quote-form {
    padding: 1.2rem;
    border-radius: var(--radius);
  }

  .google-form-frame {
    margin-inline: -0.65rem;
  }

  .google-form-frame iframe {
    height: 1540px;
  }

  .article-content table {
    display: block;
    overflow-x: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 0.55rem 1rem;
    border-top: 1px solid rgba(16, 43, 58, 0.12);
    background: rgba(255, 253, 248, 0.97);
    backdrop-filter: blur(10px);
  }

  .mobile-cta .button {
    width: 100%;
  }

  .cta-band {
    padding: 2.2rem 1.3rem;
  }
}

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