:root {
  --ink: #07111f;
  --ink-2: #0d1b2c;
  --paper: #f5f7f9;
  --white: #ffffff;
  --red: #ed1c2e;
  --red-dark: #c80f20;
  --amber: #ffb21c;
  --steel: #9ba8b5;
  --muted: #5f6d7b;
  --line: #dbe1e7;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.status-bar {
  color: #dce4eb;
  background: #030910;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-bar p {
  margin: 0;
}

.live-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(237, 28, 46, 0.18);
  animation: pulse 2s ease-out infinite;
}

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

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand__logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 4px;
}

.brand__words {
  display: grid;
  line-height: 1;
}

.brand__words strong {
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.brand__words small {
  margin-top: 5px;
  color: #afbac6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  position: relative;
  color: #d7dee5;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.nav__call {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(237, 28, 46, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.nav__call:hover,
.nav__call:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav__call svg,
.button svg,
.mobile-call svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav__call span {
  display: grid;
  line-height: 1.05;
}

.nav__call small {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__call strong {
  margin-top: 4px;
  font-size: 0.91rem;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 110px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.98) 0%, rgba(3, 9, 16, 0.9) 31%, rgba(3, 9, 16, 0.38) 62%, rgba(3, 9, 16, 0.15) 100%),
    linear-gradient(0deg, rgba(3, 9, 16, 0.74) 0%, transparent 44%);
}

.hero__road-line {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -160px;
  width: 63%;
  height: 255px;
  background: var(--red);
  clip-path: polygon(18% 0, 100% 68%, 100% 100%, 0 100%);
  opacity: 0.88;
}

.hero__content {
  padding-block: 94px 128px;
}

.hero__copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ff5967;
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  display: inline-block;
  margin: 0 10px 3px 0;
  background: currentColor;
}

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

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(2.9rem, 5.7vw, 5.8rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.85;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--white);
  text-shadow: 5px 5px 0 var(--red);
}

.hero__promise {
  max-width: 640px;
  margin: 27px 0 0;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero__promise span {
  margin-inline: 6px;
  color: var(--red);
}

.hero__lead {
  max-width: 590px;
  margin: 32px 0 0;
  color: #d9e0e7;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 36px rgba(237, 28, 46, 0.32);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero__proof {
  display: flex;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  min-width: 132px;
  display: grid;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__proof li + li {
  padding-left: 26px;
}

.hero__proof li:last-child {
  border-right: 0;
}

.hero__proof strong {
  color: var(--white);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__proof span {
  color: #aeb9c4;
  font-size: 0.75rem;
}

.hero__tag {
  position: absolute;
  right: 30px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.trust-strip {
  color: var(--white);
  background: var(--red);
}

.trust-strip__grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-strip p {
  margin: 0;
  padding: 6px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

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

.trust-strip span {
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.75rem;
}

.section {
  padding-block: clamp(86px, 10vw, 140px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.areas h2,
.about h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5.7vw, 5.4rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

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

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

.service-card {
  position: relative;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

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

.service-card__number {
  margin: 0;
  color: #a1aab3;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card--featured .service-card__number {
  color: #8290a0;
}

.service-card__line {
  width: 52px;
  height: 5px;
  margin: 52px 0 25px;
  background: var(--red);
  transform: skewX(-25deg);
}

.service-card h3 {
  margin: 0;
  font-size: 1.52rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-card > p:not(.service-card__number) {
  margin: 16px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.service-card--featured > p:not(.service-card__number) {
  color: #bdc7d1;
}

.service-card a {
  margin-top: auto;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration: none;
}

.service-card a span,
.text-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.service-card a:hover span,
.service-card a:focus-visible span,
.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.areas {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.areas::before {
  content: "LOCAL";
  position: absolute;
  right: -30px;
  bottom: -78px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(10rem, 22vw, 23rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.areas__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.areas__intro {
  position: sticky;
  top: 132px;
}

.areas__intro > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: #b8c3ce;
  font-size: 1.05rem;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 820;
  text-decoration: none;
}

.area-list {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.area-list__base {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 27px 28px;
  color: var(--white);
  background: var(--red);
  text-decoration: none;
}

.area-list__base span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-list__base strong {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 920;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.area-list__base small {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.area-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.area-list li:last-child {
  border-bottom: 0;
}

.area-list li a {
  min-height: 84px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 17px 28px;
  text-decoration: none;
  transition: background 180ms ease, padding 180ms ease;
}

.area-list li a:hover,
.area-list li a:focus-visible {
  padding-left: 36px;
  background: rgba(255, 255, 255, 0.06);
}

.area-list li a > span {
  color: #768493;
  font-size: 0.75rem;
  font-weight: 800;
}

.area-list li strong {
  font-size: clamp(1.1rem, 2vw, 1.44rem);
  font-style: italic;
  font-weight: 850;
  text-transform: uppercase;
}

.area-list li small {
  color: #8694a3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about {
  background: var(--white);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 145px);
}

.about__copy > p {
  margin: 1px 0 0;
  color: #3b4a59;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.about__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.about__details div {
  display: grid;
}

.about__details strong {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.about__details span {
  color: var(--muted);
  font-size: 0.78rem;
}

.faq {
  background: #edf1f5;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(480px, 1.26fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq__intro {
  position: sticky;
  top: 132px;
}

.faq__intro h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5.7vw, 5rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.faq__intro > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.text-link--dark {
  color: var(--ink);
}

.faq__items {
  border-top: 1px solid #c9d1d9;
}

.faq__items details {
  border-bottom: 1px solid #c9d1d9;
}

.faq__items summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 4px;
  cursor: pointer;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  font-weight: 820;
  line-height: 1.35;
  list-style: none;
}

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

.faq__items summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.faq__items details[open] summary::after {
  background: var(--ink);
  transform: rotate(45deg);
}

.faq__items summary:focus-visible {
  outline: 3px solid rgba(237, 28, 46, 0.32);
  outline-offset: 4px;
}

.faq__items details p {
  max-width: 650px;
  margin: -5px 56px 28px 4px;
  color: var(--muted);
  line-height: 1.75;
}

.google-profile-section {
  padding: 30px 0 100px;
  background: #edf1f5;
}

.google-profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(35px, 7vw, 90px);
  padding: clamp(34px, 5vw, 62px);
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: 0 18px 55px rgba(7, 17, 31, 0.09);
}

.google-profile-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.google-profile-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
}

.button--google {
  color: var(--white);
  background: var(--ink);
  white-space: nowrap;
}

.button--google:hover,
.button--google:focus-visible {
  background: var(--red);
}

.cta-section {
  padding: 30px 0 100px;
  background: var(--white);
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: clamp(38px, 6vw, 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 28px 70px rgba(237, 28, 46, 0.23);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: 26%;
  bottom: -120px;
  width: 220px;
  height: 320px;
  border: 42px solid rgba(255, 255, 255, 0.08);
  transform: skewX(-24deg);
  pointer-events: none;
}

.cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cta-card h2 {
  position: relative;
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 4.75rem);
}

.cta-card__phone {
  position: relative;
  min-width: 280px;
  display: grid;
  padding: 25px 27px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-card__phone:hover,
.cta-card__phone:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0 rgba(255, 255, 255, 0.2);
}

.cta-card__phone span {
  color: #aeb9c4;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-card__phone strong {
  margin: 7px 0 1px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-style: italic;
}

.cta-card__phone small {
  color: #d2d9df;
  font-size: 0.76rem;
}

.footer {
  color: #b8c1ca;
  background: #030910;
}

.footer__top {
  min-height: 145px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top > p {
  max-width: 430px;
  margin: 0;
  font-size: 0.9rem;
}

.footer__contacts {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.footer__contacts a {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.footer__contacts a:first-child {
  font-size: 1.16rem;
  font-style: italic;
  font-weight: 900;
}

.footer__contacts a:hover,
.footer__contacts a:focus-visible {
  color: var(--red-bright);
}

.footer__bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #76818c;
  font-size: 0.75rem;
}

.footer__bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 28, 46, 0.48);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(237, 28, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 28, 46, 0);
  }
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 950px) {
  .nav__links {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 9, 16, 0.97) 0%, rgba(3, 9, 16, 0.78) 60%, rgba(3, 9, 16, 0.35) 100%),
      linear-gradient(0deg, rgba(3, 9, 16, 0.85) 0%, transparent 52%);
  }

  .section-heading,
  .areas__layout,
  .about__layout,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 26px;
  }

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

  .service-card {
    min-height: 300px;
  }

  .areas__intro {
    position: static;
  }

  .faq__intro {
    position: static;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .google-profile-card {
    grid-template-columns: 1fr;
  }

  .cta-card__phone {
    width: min(100%, 390px);
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 76px;
  }

  .status-bar__location,
  .nav__call {
    display: none;
  }

  .status-bar__inner {
    justify-content: center;
  }

  .nav {
    min-height: 68px;
  }

  .brand__logo {
    width: 52px;
    height: 52px;
  }

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

  .hero__image {
    object-position: 61% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(3, 9, 16, 0.99) 0%, rgba(3, 9, 16, 0.86) 58%, rgba(3, 9, 16, 0.35) 100%),
      linear-gradient(90deg, rgba(3, 9, 16, 0.6), rgba(3, 9, 16, 0.1));
  }

  .hero__content {
    padding-block: 165px 75px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.2vw, 4.3rem);
    line-height: 0.88;
  }

  .hero__promise {
    font-size: 0.72rem;
  }

  .hero__lead {
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__proof {
    justify-content: space-between;
  }

  .hero__proof li {
    min-width: 0;
    padding-right: 12px;
  }

  .hero__proof li + li {
    padding-left: 12px;
  }

  .hero__proof span {
    font-size: 0.75rem;
  }

  .hero__tag {
    display: none;
  }

  .hero__road-line {
    right: -38%;
    bottom: -180px;
    width: 100%;
  }

  .trust-strip__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-strip p {
    padding: 13px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading h2,
  .areas h2,
  .about h2,
  .faq__intro h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card {
    min-height: 286px;
    padding: 27px;
  }

  .service-card__line {
    margin-top: 36px;
  }

  .areas__layout {
    gap: 44px;
  }

  .area-list__base {
    grid-template-columns: 1fr auto;
  }

  .area-list__base span {
    grid-column: 1 / -1;
  }

  .area-list li a {
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    padding-inline: 18px;
  }

  .area-list li a:hover,
  .area-list li a:focus-visible {
    padding-left: 22px;
  }

  .about__layout {
    gap: 38px;
  }

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

  .cta-section {
    padding-bottom: 70px;
  }

  .cta-card {
    width: 100%;
    gap: 34px;
  }

  .cta-card__phone {
    min-width: 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 42px;
  }

  .footer__contacts {
    justify-items: start;
  }

  .footer__bottom {
    min-height: 90px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }

  .mobile-call {
    position: fixed;
    z-index: 300;
    right: 10px;
    bottom: 9px;
    left: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 18px;
    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    box-shadow: 0 14px 36px rgba(7, 17, 31, 0.42);
    text-decoration: none;
  }

  .mobile-call span {
    display: grid;
    line-height: 1.1;
  }

  .mobile-call small {
    font-size: 0.75rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-call strong {
    margin-top: 3px;
    font-size: 1rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Search landing pages */
.landing-page {
  background: var(--white);
}

.landing-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.landing-hero__image,
.landing-hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero__image {
  object-fit: cover;
  object-position: center;
}

.landing-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.99) 0%, rgba(3, 9, 16, 0.92) 42%, rgba(3, 9, 16, 0.48) 73%, rgba(3, 9, 16, 0.3) 100%),
    linear-gradient(0deg, rgba(3, 9, 16, 0.82) 0%, transparent 55%);
}

.breadcrumbs {
  padding-top: 25px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #aeb8c2;
  font-size: 0.8rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #647383;
}

.breadcrumbs a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 4px;
}

.landing-hero__content {
  max-width: 785px;
  padding: 86px 0 104px;
}

.landing-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.91;
  text-transform: uppercase;
  text-wrap: balance;
}

.landing-hero__lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: #d3dce4;
  font-size: clamp(1.04rem, 1.8vw, 1.23rem);
  line-height: 1.68;
}

.landing-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.landing-hero__proof li {
  padding: 8px 12px;
  color: #e6ebf0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.landing-section {
  padding-block: clamp(80px, 9vw, 128px);
}

.landing-services {
  background: #f3f6f8;
}

.landing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(36px, 7vw, 90px);
}

.landing-heading--compact {
  grid-template-columns: 1fr;
}

.landing-heading h2,
.local-detail h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.45rem, 5.2vw, 4.8rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.landing-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.landing-card {
  min-height: 325px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.06);
}

.landing-card__number {
  color: #94a0ac;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.landing-card h3 {
  margin: 54px 0 14px;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.landing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.dispatch-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--ink);
  border-left: 6px solid var(--red);
}

.dispatch-note strong {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dispatch-note p {
  margin: 0;
  color: #c4ced7;
  font-size: 0.91rem;
}

.dispatch-note a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.dispatch-note a span {
  color: var(--red);
}

.local-detail {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.local-detail::after {
  content: "24/7";
  position: absolute;
  right: -15px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.03);
  font-size: clamp(10rem, 25vw, 23rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.local-detail__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(55px, 9vw, 130px);
}

.local-detail__title .eyebrow {
  color: #ff5967;
}

.local-detail__copy > p {
  margin: 0;
  color: #c1ccd6;
  font-size: 1.04rem;
  line-height: 1.86;
}

.local-detail__copy > p + p {
  margin-top: 22px;
}

.local-detail__callout {
  margin-top: 36px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--red);
}

.local-detail__callout h3 {
  margin: 0;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.local-detail__callout p {
  margin: 12px 0 22px;
  color: #c9d2da;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 52px 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 250px;
  padding: 29px;
  background: var(--white);
}

.process-grid span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process-grid h3 {
  margin: 48px 0 12px;
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.related-section {
  padding-top: 20px;
  background: var(--white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.related-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  background: #13263c;
  transform: translateY(-5px);
}

.related-card > span {
  color: #ff6674;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 38px 0 12px;
  font-size: 1.42rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.related-card p {
  margin: 0 0 24px;
  color: #b8c3ce;
  line-height: 1.65;
}

.related-card strong {
  margin-top: auto;
  color: var(--red);
  font-size: 1.35rem;
}

.seo-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: clamp(35px, 7vw, 90px);
  padding-block: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-footer-links h2 {
  margin: 0 0 19px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-footer-links ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-footer-links a {
  color: #c1cad3;
  font-size: 0.86rem;
  text-decoration: none;
}

.seo-footer-links a:hover,
.seo-footer-links a:focus-visible,
.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.seo-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.seo-footer-contact p,
.seo-footer-contact span {
  margin: 0;
  color: #8996a3;
  font-size: 0.82rem;
}

.seo-footer-contact a[href^="tel:"] {
  color: var(--white);
  font-size: 1.24rem;
  font-style: italic;
  font-weight: 900;
}

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

@media (max-width: 950px) {
  .landing-heading,
  .local-detail__layout {
    grid-template-columns: 1fr;
  }

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

  .landing-card:last-child,
  .related-card:last-child {
    grid-column: 1 / -1;
  }

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

  .dispatch-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .seo-footer-contact {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 680px) {
  .landing-hero {
    min-height: 660px;
  }

  .landing-hero__shade {
    background:
      linear-gradient(0deg, rgba(3, 9, 16, 0.99) 0%, rgba(3, 9, 16, 0.88) 64%, rgba(3, 9, 16, 0.45) 100%),
      linear-gradient(90deg, rgba(3, 9, 16, 0.52), rgba(3, 9, 16, 0.12));
  }

  .breadcrumbs {
    padding-top: 18px;
  }

  .landing-hero__content {
    padding: 70px 0 76px;
  }

  .landing-hero h1 {
    font-size: clamp(3rem, 15vw, 5.1rem);
  }

  .landing-hero__lead {
    font-size: 1rem;
  }

  .landing-section {
    padding-block: 78px;
  }

  .landing-heading {
    gap: 24px;
  }

  .landing-heading h2,
  .local-detail h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .landing-card-grid,
  .related-grid,
  .process-grid,
  .seo-footer-links {
    grid-template-columns: 1fr;
  }

  .landing-card:last-child,
  .related-card:last-child,
  .seo-footer-contact {
    grid-column: auto;
  }

  .landing-card {
    min-height: 285px;
  }

  .landing-hero__proof {
    gap: 7px;
  }

  .landing-hero__proof li {
    font-size: 0.67rem;
  }

  .dispatch-note {
    padding: 22px;
  }

  .process-grid li {
    min-height: 215px;
  }

  .seo-footer-contact {
    padding-top: 30px;
  }
}
