/* TODO: replace palette from logo */
:root {
  /* REPLACE these with colors sampled from Antia's logo */
  --brand-primary: #0e4ecf;
  --brand-secondary: #07318d;
  --brand-accent: #05235f;

  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-100: #f1f5f9;
  --bg: #ffffff;
  --bg-alt: #f8fafc;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --max-width: 1180px;
  --section-pad: clamp(3rem, 6vw, 5rem);
  --nav-height: 84px;
  --border: 1px solid rgba(100, 116, 139, 0.18);
  --transition: 180ms ease;
}

@font-face {
  font-family: "InterLocal";
  src: local("Inter"), local("Inter Regular");
  font-display: swap;
  font-weight: 100 900;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "InterLocal", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background:
    radial-gradient(circle at top right, rgba(14, 78, 207, 0.08), transparent 32%),
    radial-gradient(circle at top left, rgba(7, 49, 141, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(14, 78, 207, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  background: var(--ink-900);
  color: var(--bg);
  border-radius: var(--radius-sm);
  z-index: 50;
}

.skip-link:focus {
  top: 1rem;
}

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

.section,
.section-alt {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.8), rgba(255, 255, 255, 0.8));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-primary);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 1.2rem;
  height: 2px;
  background: var(--brand-accent);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--ink-900);
  font-family: "InterLocal", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

.lede,
.section-intro {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 60ch;
  color: var(--ink-700);
}

.btn-row,
.hero-actions,
.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
}

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

.btn-primary {
  background: var(--brand-primary);
  color: var(--bg);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-900);
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-accent {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.badge,
.pill,
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-700);
  font-size: 0.92rem;
}

.topbar {
  background: linear-gradient(90deg, #07318d, #0e4ecf);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}

.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar a {
  color: var(--bg);
  font-weight: 700;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav {
  backdrop-filter: saturate(1.2) blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(203, 213, 225, 0.6);
}

.nav-sticky {
  box-shadow: var(--shadow-sm);
}

.nav .container {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  color: var(--ink-900);
  min-width: 0;
}

.brand-logo {
  width: clamp(11rem, 22vw, 15rem);
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 12px 20px rgba(14, 78, 207, 0.14));
}

.brand-copy {
  min-width: 0;
}

.brand-copy small {
  display: block;
  color: var(--ink-500);
  font-weight: 600;
}

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

.nav-links a {
  font-weight: 600;
  color: var(--ink-700);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: var(--border);
  background: var(--bg);
  color: var(--ink-900);
}

.nav-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 78, 207, 0.32), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(5, 35, 95, 0.42), transparent 22%),
    linear-gradient(180deg, #061225 0%, #09275d 100%);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
  pointer-events: none;
}

.hero-home .container {
  position: relative;
  z-index: 1;
}

.hero-home-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.hero-home-copy {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-home-copy h1,
.hero-home-copy h2,
.hero-home-copy h3,
.hero-home-copy h4,
.hero-home-copy .eyebrow,
.hero-home-copy .trust-chip {
  color: #fff;
}

.hero-home-copy .lede {
  color: rgba(255, 255, 255, 0.82);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(14, 78, 207, 0.5), rgba(5, 35, 95, 0.82));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.hero-home .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero-home .eyebrow::before {
  background: var(--brand-accent);
}

.hero-home .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.hero-home .trust-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.hero-card,
.image-frame,
.card,
.stat,
.map-teaser,
.quote-panel,
.contact-panel {
  background: rgba(255, 255, 255, 0.92);
  border: var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.hero-logo {
  width: min(100%, 25rem);
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0;
  filter: drop-shadow(0 16px 26px rgba(14, 78, 207, 0.14));
}

.hero-copy .lede {
  margin-bottom: 1.4rem;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.metric-panel {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.24);
  backdrop-filter: blur(8px);
}

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

.metric-card {
  padding: 1rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 10rem;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: #fff;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.76);
}

.hero-review-card {
  background: rgba(255, 255, 255, 0.96);
}

.hero-review-card h3 {
  margin-bottom: 0.55rem;
}

.hero-review-card p:last-of-type {
  margin-bottom: 1.1rem;
}

.hero-service-zone {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.96));
}

.image-frame {
  padding: 0.8rem;
}

.image-frame img {
  border-radius: calc(var(--radius-lg) - 6px);
}

.grid-2,
.grid-3,
.grid-4,
.cards-grid,
.footer-grid,
.stats-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  padding: 1.35rem;
}

.card-hover {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 74, 107, 0.2);
}

.icon-chip {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(14, 74, 107, 0.08);
  margin-bottom: 1rem;
}

.icon-chip img {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.timeline-step {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: var(--border);
  background: rgba(255, 255, 255, 0.92);
}

.timeline-step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-primary);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

.industries-grid,
.services-mini-grid,
.city-list,
.meta-list,
.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.services-mini-grid a,
.city-list a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(14, 74, 107, 0.08);
  color: var(--brand-primary);
  font-weight: 600;
}

.stat {
  padding: 1.35rem;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--ink-900);
}

.review-helper {
  border-left: 5px solid var(--brand-accent);
  padding: 1.4rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-logo {
  width: min(100%, 14rem);
  height: auto;
  border-radius: 0;
  flex: 0 0 auto;
}

.review-header p {
  margin-bottom: 0;
}

.rating-stars {
  letter-spacing: 0.18em;
  color: var(--brand-secondary);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.rating-copy {
  margin-bottom: 0.5rem;
}

.faq-group {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: var(--border);
  background: rgba(255, 255, 255, 0.92);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-900);
  list-style: none;
}

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

.faq-item p {
  margin-top: 0.85rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--brand-primary);
}

.checklist,
.included-grid,
.related-grid {
  display: grid;
  gap: 1rem;
}

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

.checklist-card,
.quote-panel,
.contact-panel {
  padding: 1.35rem;
}

.checklist-card ul {
  display: grid;
  gap: 0.55rem;
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(7, 49, 141, 0.98), rgba(14, 78, 207, 0.96));
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-band h2,
.cta-band p {
  color: white;
}

.map-teaser {
  overflow: hidden;
}

.map-teaser iframe,
.map-teaser img {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 0;
}

.service-area-card {
  align-self: start;
  background:
    radial-gradient(circle at top right, rgba(14, 78, 207, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.94);
}

.service-area-card .btn-row {
  margin-top: 1.1rem;
}

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

.form-field,
.form-field-full {
  display: grid;
  gap: 0.45rem;
}

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

label {
  font-weight: 600;
  color: var(--ink-900);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 0.9rem;
  background: white;
  color: var(--ink-900);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.helper {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.footer {
  background: linear-gradient(180deg, #07296e 0%, #041a4b 100%);
  color: rgba(255, 255, 255, 0.84);
  padding: 2.5rem 0 1rem;
}

.footer-logo {
  width: min(100%, 13rem);
  height: auto;
  border-radius: 0;
  margin-bottom: 0;
}

.footer-brand {
  align-self: start;
}

.footer h3,
.footer h4 {
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  gap: 2rem;
}

.footer ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 0;
  list-style: none;
}

.footer-areas {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.footer-areas h4 {
  margin-bottom: 0.7rem;
}

.footer .footer-areas .footer-service-areas {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  width: 100%;
  font-size: 0.88rem;
  line-height: 1.25;
}

.footer .footer-areas .footer-service-areas ul {
  display: grid !important;
  gap: 0.32rem;
  margin: 0;
  min-width: 0;
}

.footer .footer-areas .footer-service-areas a {
  display: inline-block;
  padding: 0.05rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  flex-wrap: wrap;
}

.page-hero {
  padding: 2rem 0 3rem;
}

.page-hero-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 78, 207, 0.18), transparent 24%),
    linear-gradient(180deg, #0b1d34 0%, #17355d 100%);
}

.page-hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
  opacity: 0.8;
}

.page-hero-dark .container {
  position: relative;
  z-index: 1;
}

.page-hero-dark .breadcrumb,
.page-hero-dark .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-dark-card {
  max-width: 52rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(2, 8, 23, 0.24);
  backdrop-filter: blur(10px);
}

.page-hero-dark-card h1,
.page-hero-dark-card h2,
.page-hero-dark-card h3,
.page-hero-dark-card .eyebrow,
.page-hero-dark-card .trust-chip {
  color: #fff;
}

.page-hero-dark-card .lede {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero-dark-card .eyebrow::before {
  background: var(--brand-accent);
}

.page-hero-dark-card .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.page-hero-dark-card .trust-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.page-hero .hero-card {
  padding: 1.7rem;
}

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

.article-content {
  display: grid;
  gap: 1.5rem;
}

.article-content section {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: var(--border);
}

.article-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.article-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  display: grid;
  gap: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1100px) {
  .brand-copy {
    display: none;
  }

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

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

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

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 960px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-panel {
    position: absolute;
    inset: calc(var(--nav-height) + 0.5rem) 1rem auto 1rem;
    padding: 1rem;
    display: grid;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.98);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .nav-panel[hidden] {
    display: none;
  }

  .nav-panel a {
    padding: 0.8rem 0.9rem;
    border-radius: 0.85rem;
    background: rgba(14, 74, 107, 0.06);
    font-weight: 700;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-home-split,
  .hero-split,
  .grid-2,
  .grid-3,
  .grid-4,
  .included-grid,
  .timeline,
  .stats-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-home-copy {
    padding-top: 0;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .topbar .container,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .hero-copy,
  .card,
  .quote-panel,
  .contact-panel,
  .cta-band,
  .page-hero .hero-card {
    padding: 1.2rem;
  }

  .footer .footer-areas .footer-service-areas {
    grid-template-columns: 1fr !important;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
