:root {
  --header-height: 78px;
  --emergency-height: 120px;
  --ink: #053341;
  --ink-strong: #022832;
  --muted: #55707a;
  --line: #dbe5e7;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --yellow: #ffc928;
  --yellow-dark: #e5ae05;
  --teal: #004c5d;
  --teal-dark: #003541;
  --red: #c62828;
  --shadow: 0 18px 45px rgba(2, 40, 50, 0.13);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255, 201, 40, 0.1), transparent 24rem),
    var(--cream);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(5, 51, 65, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 88px));
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 0.86;
}

.brand-mark {
  color: var(--yellow);
  font-size: 52px;
  line-height: 1;
  text-shadow: 0 1px 0 var(--yellow-dark);
}

.brand-text strong {
  display: block;
  color: #111;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 46px;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .danger {
  color: var(--red);
}

.phone-button,
.menu-button,
.btn,
.outline-button,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 800;
}

.phone-button {
  padding: 0 20px;
  background: var(--teal);
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(5, 51, 65, 0.08);
  font-weight: 800;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.phone-button svg,
.menu-button svg,
.btn svg,
.emergency-call svg,
.outline-button svg,
.sticky-call svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: max(530px, calc(100svh - var(--header-height) - var(--emergency-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.mobile-hero {
  background-image: url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1800&q=88");
  background-size: cover;
  background-position: 50% 40%;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 32, 39, 0.78), rgba(2, 32, 39, 0.35) 48%, rgba(2, 32, 39, 0.02)),
    linear-gradient(0deg, rgba(2, 32, 39, 0.1), rgba(2, 32, 39, 0.1));
}

.hero-content {
  width: min(1160px, calc(100% - 88px));
  margin: 0 auto;
  color: white;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 0 0 30px;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 16px;
}

.btn-primary {
  background: var(--yellow);
  color: #141414;
  box-shadow: 0 5px 0 var(--yellow-dark);
}

.btn-dark {
  background: var(--teal);
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

.emergency {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: var(--emergency-height);
  padding: 23px 68px;
  background: linear-gradient(90deg, var(--teal-dark), #005b6b);
  color: white;
}

.emergency-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #061c22;
  font-size: 40px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
}

.emergency h2 {
  margin: 0 0 5px;
  font-size: 22px;
}

.emergency p {
  margin: 0;
  font-size: 14px;
}

.emergency-call {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.emergency-call svg {
  width: 46px;
  height: 46px;
}

.emergency-call strong {
  display: block;
  font-size: 28px;
}

.emergency-call small {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 800;
}

.emergency-detail {
  display: inline-flex;
  margin-top: 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  width: min(1160px, calc(100% - 88px));
  margin: 0 auto;
  padding: 46px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 28px;
  color: var(--ink-strong);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
}

.subpage-hero {
  padding: 76px 0 46px;
  background:
    linear-gradient(90deg, rgba(2, 40, 50, 0.92), rgba(0, 76, 93, 0.88)),
    url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1800&q=86");
  background-position: center;
  background-size: cover;
  color: white;
}

.subpage-inner,
.content-band {
  width: min(1160px, calc(100% - 88px));
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.home-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px 16px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.subpage-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
}

.subpage-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.content-band {
  padding: 48px 0;
}

.content-band h2 {
  margin: 0 0 22px;
  color: var(--ink-strong);
  font-size: clamp(28px, 3vw, 36px);
}

.intro-grid,
.detail-grid,
.link-grid {
  display: grid;
  gap: 22px;
}

.intro-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

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

.info-panel,
.detail-card,
.link-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.info-panel p,
.detail-card p,
.link-card p,
.text-page p,
.text-page li {
  color: #42616a;
  line-height: 1.58;
}

.detail-card h3,
.link-card h3 {
  margin: 0 0 10px;
  color: var(--ink-strong);
}

.link-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 40, 50, 0.1);
}

.text-page {
  max-width: 860px;
}

.text-page ul {
  padding-left: 20px;
}

.services {
  text-align: center;
}

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

.service-card {
  min-height: 225px;
  padding: 27px 25px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(2, 40, 50, 0.04);
}

.service-card > svg {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: var(--ink);
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.service-card p {
  min-height: 64px;
  margin: 0 0 15px;
  color: #314f59;
  font-size: 13px;
  line-height: 1.35;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
}

.service-card a svg {
  width: 15px;
}

.trust-strip {
  width: min(1160px, calc(100% - 88px));
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(219, 229, 231, 0.75);
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 14px;
  padding: 22px;
  border-right: 1px solid rgba(219, 229, 231, 0.75);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip svg {
  grid-row: span 2;
  width: 43px;
  height: 43px;
  color: var(--yellow-dark);
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.region {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 260px;
  align-items: start;
  gap: 42px;
}

.region-copy h2 {
  margin-bottom: 18px;
}

.region-copy p:not(.eyebrow) {
  color: #42616a;
  line-height: 1.55;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.location-tags span,
.location-tags small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  background: white;
  border: 1px solid #b9c9ce;
  border-radius: 4px;
  font-weight: 700;
}

.location-tags svg {
  width: 16px;
  color: var(--teal);
}

.location-tags small {
  width: 112px;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
}

.map-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(36deg, transparent 0 48%, rgba(180, 203, 210, 0.55) 48% 50%, transparent 50%),
    linear-gradient(144deg, transparent 0 54%, rgba(180, 203, 210, 0.55) 54% 56%, transparent 56%),
    linear-gradient(12deg, transparent 0 46%, rgba(180, 203, 210, 0.55) 46% 48%, transparent 48%),
    #eef3ec;
  box-shadow: inset 0 0 0 1px rgba(5, 51, 65, 0.06);
}

.map-card::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 46px;
  height: 44px;
  background: rgba(188, 219, 230, 0.75);
  transform: rotate(-7deg);
}

.pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.pin::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 4px white;
}

.pin-main {
  left: 48%;
  top: 58%;
  font-size: 14px;
}

.pin-main::before {
  width: 28px;
  height: 28px;
}

.pin-north {
  left: 31%;
  top: 18%;
}

.pin-west {
  left: 10%;
  top: 44%;
}

.pin-east {
  right: 12%;
  top: 34%;
}

.phone-preview {
  position: relative;
  margin-top: -48px;
  text-align: center;
}

.phone-shell {
  width: 238px;
  height: 510px;
  padding: 10px;
  margin: 0 auto;
  border: 7px solid #050505;
  border-radius: 38px;
  background: #050505;
  box-shadow: var(--shadow);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #073845;
  color: white;
  text-align: left;
}

.mobile-hero {
  height: 162px;
}

.phone-screen h3,
.phone-screen p {
  padding: 0 14px;
}

.phone-screen h3 {
  margin: 18px 0 8px;
  font-size: 25px;
  line-height: 1.05;
}

.phone-screen p {
  margin: 0 0 14px;
  font-size: 11px;
  line-height: 1.35;
}

.mobile-yellow,
.mobile-call,
.mobile-alert,
.mobile-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 9px 14px;
  min-height: 39px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.mobile-yellow,
.mobile-sticky {
  background: var(--yellow);
  color: #111;
}

.mobile-call {
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.mobile-alert {
  min-height: 80px;
  justify-content: flex-start;
  padding: 12px;
  background: #003540;
  color: var(--yellow);
}

.mobile-sticky {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
}

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

.reference-grid article img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 6px;
}

.reference-grid h3 {
  margin: 12px 0 4px;
  font-size: 14px;
}

.reference-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.outline-button {
  width: fit-content;
  margin: 28px auto 0;
  padding: 0 30px;
  border: 1px solid var(--teal);
  background: white;
  color: var(--ink);
  font-size: 13px;
}

.inline-button {
  margin-left: 0;
  margin-right: 0;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
}

.about img {
  width: 100%;
  height: 312px;
  object-fit: cover;
  border-radius: 6px;
}

.about p:not(.eyebrow) {
  color: #42616a;
  line-height: 1.55;
}

.stats {
  display: flex;
  gap: 34px;
  margin-top: 26px;
}

.stats span {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 10px;
}

.stats svg {
  grid-row: span 2;
  width: 36px;
  height: 36px;
}

.stats strong {
  font-size: 25px;
}

.stats small {
  color: var(--muted);
  font-size: 11px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.process-grid article {
  position: relative;
  min-height: 94px;
  padding: 16px 12px 14px 58px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
}

.process-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -14px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 800;
}

.process-grid svg {
  position: absolute;
  left: 14px;
  top: 20px;
  width: 31px;
  height: 31px;
}

.process-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.process-grid span {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.8fr;
  gap: 44px;
  align-items: start;
}

.contact h2,
.contact h3 {
  margin: 0 0 10px;
}

.contact-info ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #294b55;
  font-size: 14px;
}

.contact-info svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd8dc;
  border-radius: 3px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: white;
}

input:user-invalid,
textarea:user-invalid {
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #294b55;
  font-size: 12px;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.privacy-check a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.form-message.is-error {
  color: var(--red);
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
  font-size: 14px;
}

.hours span {
  color: #294b55;
}

.hours .red {
  color: var(--red);
  font-weight: 800;
}

.socials {
  display: flex;
  gap: 16px;
  width: fit-content;
  margin-top: 32px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  font-weight: 900;
}

.socials a:nth-child(1) {
  background: #2d65b7;
}

.socials a:nth-child(2) {
  background: linear-gradient(135deg, #f7cf46, #e22f6b, #5943d2);
}

.socials a:nth-child(3) {
  background: #fff;
  color: #1a73e8;
  border: 1px solid var(--line);
}

.site-footer {
  position: relative;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(5, 51, 65, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.footer-main {
  width: min(1160px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(160px, 0.8fr) minmax(240px, 1fr) minmax(150px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.footer-brand,
.footer-nav,
.footer-case,
.footer-legal {
  display: grid;
  gap: 12px;
}

.footer-nav,
.footer-legal {
  font-size: 13px;
  font-weight: 700;
}

.site-footer h2 {
  margin: 0 0 4px;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.case-study-note {
  max-width: 260px;
  line-height: 1.4;
}

.to-top {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--yellow);
  color: #111;
}

.anchor-target {
  display: block;
  height: 0;
  overflow: hidden;
}

.sticky-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  background: var(--yellow);
  color: #111;
  box-shadow: var(--shadow);
}

@media (max-width: 1180px) {
  .header-inner {
    width: min(100% - 60px, 1160px);
  }

  .desktop-nav {
    gap: 24px;
  }

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

  .phone-preview {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --emergency-height: 297px;
  }

  .desktop-nav {
    display: none;
  }

  .phone-button {
    padding: 0 14px;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: max(460px, calc(100svh - var(--header-height) - var(--emergency-height)));
  }

  .hero-content,
  .section,
  .trust-strip,
  .footer-main,
  .subpage-inner,
  .content-band {
    width: min(100% - 32px, 680px);
  }

  .hero-content {
    margin-left: 24px;
  }

  .emergency,
  .region,
  .about,
  .contact,
  .intro-grid,
  .detail-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .emergency {
    padding: 22px 24px;
  }

  .emergency-call {
    justify-self: start;
  }

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

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .process-grid article:not(:last-child)::after {
    content: "";
  }

  .site-footer {
    padding: 28px 24px 78px;
  }

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

@media (max-width: 580px) {
  :root {
    --header-height: 68px;
    --emergency-height: 244px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    width: calc(100% - 28px);
    min-height: var(--header-height);
  }

  .brand-mark {
    font-size: 38px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .phone-button span {
    display: none;
  }

  .hero {
    min-height: 600px;
    align-items: end;
    padding-bottom: 34px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(2, 32, 39, 0.9), rgba(2, 32, 39, 0.12));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions,
  .form-row {
    flex-direction: column;
    display: flex;
  }

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

  .btn {
    width: 100%;
  }

  .emergency-call strong {
    font-size: 22px;
  }

  .service-grid,
  .reference-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(219, 229, 231, 0.75);
  }

  .stats {
    flex-direction: column;
    gap: 18px;
  }

  .sticky-call {
    display: inline-flex;
  }
}
