:root {
  --ink: #111315;
  --ink-2: #252b31;
  --text: #16191c;
  --muted: #5f6871;
  --line: #e5e9ec;
  --paper: #ffffff;
  --soft: #f7f8f4;
  --safety: #ffd21f;
  --safety-2: #f0b90b;
  --danger: #d92d20;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .18);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fafafa;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--safety);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 19, 21, .1);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(17, 19, 21, .06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.brand-domain {
  color: rgba(17, 19, 21, .58);
  font-size: 12px;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(17, 19, 21, .66);
  font-size: 14px;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #9b6f00;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: max-content;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: max-content;
}

.header-call span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 32px;
  border: 1px solid rgba(17, 19, 21, .16);
  background: var(--safety);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

.phone-link,
.footer-phone,
.text-link {
  font-weight: 900;
  text-decoration: none;
}

.phone-link {
  font-size: 17px;
}

.phone-link:hover,
.footer-phone:hover,
.text-link:hover {
  color: #9b6f00;
}

.menu-toggle,
.menu-close {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(17, 19, 21, .16);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 999px;
  transition: transform .24s ease, opacity .2s ease, background-color .2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: #000;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 72px 0 0;
  z-index: 48;
  pointer-events: none;
  background: rgba(17, 19, 21, 0);
  transition: background-color .24s ease;
}

.site-menu {
  position: fixed;
  top: 84px;
  right: max(20px, calc((100vw - var(--container)) / 2));
  z-index: 49;
  width: min(390px, calc(100vw - 40px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px) scale(.98);
  transform-origin: top right;
  transition: opacity .24s ease, transform .24s ease;
}

.menu-panel {
  padding: 18px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(17, 19, 21, .1);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(17, 19, 21, .22);
}

.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-panel-head span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-close {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft);
}

.menu-close span {
  position: absolute;
  left: 10px;
  top: 18px;
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-close:hover,
.menu-close:focus-visible {
  background: var(--safety);
}

.menu-panel-nav {
  display: grid;
  gap: 6px;
  padding: 14px 0;
}

.menu-panel-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: var(--soft);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 18px;
  font-weight: 950;
  transition: background-color .18s ease, transform .18s ease;
}

.menu-panel-nav a:hover,
.menu-panel-nav a:focus-visible {
  background: var(--safety);
  transform: translateX(2px);
}

.menu-panel-call {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: var(--ink);
  background: var(--safety);
  border-radius: var(--radius);
}

.menu-panel-call span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-panel-call a {
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 950;
}

body.menu-open .menu-backdrop {
  pointer-events: auto;
  background: rgba(17, 19, 21, .22);
}

body.menu-open .site-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 84px));
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, .68) 0%, rgba(8, 10, 12, .44) 38%, rgba(8, 10, 12, .08) 70%, rgba(8, 10, 12, 0) 100%),
    linear-gradient(180deg, rgba(8, 10, 12, 0), rgba(8, 10, 12, .28)),
    url("/3.jpeg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 58px;
  max-width: var(--container);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.8vw, 22px);
}

.hero-usp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-usp li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 210, 31, .95);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

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

.btn-primary {
  background: var(--safety);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(255, 210, 31, .24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffe06a;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #000;
}

.hero-phone {
  min-height: 56px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  color: #fff;
  text-decoration: none;
  padding-left: 16px;
  border-left: 3px solid var(--safety);
}

.hero-phone strong {
  font-size: 23px;
  line-height: 1.05;
  font-weight: 950;
}

.hero-phone span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 800;
}

.hero-phone:hover strong,
.hero-phone:focus-visible strong {
  color: var(--safety);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .2);
  color: #fff;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.quick-strip {
  background: var(--safety);
  color: var(--ink);
}

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

.strip-grid div {
  min-height: 82px;
  padding: 18px 24px;
  border-left: 1px solid rgba(17, 19, 21, .16);
}

.strip-grid div:last-child {
  border-right: 1px solid rgba(17, 19, 21, .16);
}

.strip-grid strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
}

.strip-grid span {
  display: block;
  margin-top: 4px;
  color: rgba(17, 19, 21, .72);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: #f1f4f2;
  color: var(--ink);
}

.section-muted {
  background: var(--soft);
}

.two-col,
.cost-layout,
.why-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.section h2,
.final-cta h2,
.legal-content h1 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-head p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-head-light p:not(.section-kicker) {
  color: var(--muted);
}

.situation-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

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

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

.mini-card,
.service-card,
.cost-panel,
.faq-list details {
  border-radius: var(--radius);
}

.mini-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 21, .1);
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 19, 21, .06);
}

.icon-dot {
  width: 14px;
  height: 14px;
  display: block;
  background: var(--safety);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 210, 31, .12);
  margin-bottom: 22px;
}

.mini-card h3,
.service-card h3,
.cost-panel h3,
.steps h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.mini-card p,
.service-card p,
.steps p,
.why-list span {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-card p {
  color: var(--muted);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  margin-bottom: 30px;
  background: var(--ink);
  color: var(--safety);
  border-radius: 999px;
  font-weight: 950;
  font-size: 13px;
}

.large-text {
  margin: 24px 0 0;
  color: #4f5961;
  font-size: 22px;
  line-height: 1.42;
}

.cost-panel {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(17, 19, 21, .08);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #35404a;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 13px;
  height: 13px;
  background: var(--safety);
  border-radius: 50%;
}

.legal-note {
  margin: 22px 0;
  padding: 16px;
  background: var(--soft);
  border-left: 4px solid var(--safety);
  color: #4f5961;
  font-size: 14px;
}

.area-band {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: center;
  padding: 42px;
  background: #f1f4f2;
  color: var(--ink);
  border: 1px solid rgba(17, 19, 21, .1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.area-band::after {
  content: "БИШКЕК";
  position: absolute;
  right: -10px;
  bottom: -48px;
  color: rgba(17, 19, 21, .06);
  font-size: 160px;
  line-height: 1;
  font-weight: 950;
}

.area-band p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.area-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 19, 21, .1);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 21, .1);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(17, 19, 21, .06);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  background: var(--safety);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 950;
}

.why-layout p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.why-list strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
}

.why-list span {
  display: block;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 900;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--safety-2);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.final-cta {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, .88), rgba(17, 19, 21, .56)),
    url("/3.jpeg") center / cover no-repeat;
  color: #fff;
}

.final-inner {
  max-width: 760px;
}

.final-cta p:not(.section-kicker) {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, .76);
  font-size: 20px;
}

.site-footer {
  padding: 48px 0 66px;
  background: #181d21;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.1fr 1fr;
  gap: 32px;
}

.brand-footer {
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer .brand-domain {
  color: rgba(255, 255, 255, .62);
}

.site-footer p {
  margin: 6px 0;
  color: rgba(255, 255, 255, .62);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--safety);
}

.footer-phone {
  font-size: 22px;
}

.mobile-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  min-height: 58px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
  background: var(--safety);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.mobile-call span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-call strong {
  font-size: 18px;
  line-height: 1.1;
}

.cookie-notice {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(440px, calc(100vw - 36px));
  display: none;
  align-items: start;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  color: #fff;
  background: rgba(17, 19, 21, .94);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.cookie-notice.is-visible {
  display: flex;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.cookie-notice a {
  color: var(--safety);
  font-weight: 800;
}

.cookie-close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.cookie-close:hover,
.cookie-close:focus-visible {
  background: var(--safety);
  color: var(--ink);
}

.legal-main {
  background: var(--soft);
  padding: 56px 0 84px;
}

.legal-content {
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--ink);
}

.legal-date {
  margin: 16px 0 34px;
  color: var(--muted);
  font-weight: 800;
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content section + section {
  margin-top: 28px;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  color: #3f4851;
}

.legal-content ul {
  padding-left: 22px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .72);
}

.footer-bottom a {
  display: inline-flex;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: min(720px, calc(100svh - 92px));
  }

  .two-col,
  .cost-layout,
  .why-layout,
  .faq-layout,
  .area-band {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

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

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 64px;
    gap: 14px;
  }

  .menu-backdrop {
    inset: 64px 0 0;
  }

  .site-menu {
    top: 76px;
    right: 14px;
    width: calc(100vw - 28px);
  }

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

  .brand-name {
    font-size: 17px;
  }

  .brand-domain {
    display: none;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .phone-link {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(8, 10, 12, .5) 0%, rgba(8, 10, 12, .62) 45%, rgba(8, 10, 12, .8) 100%),
      url("../images/hero-tow-truck-moscow-v2.png") 61% center / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 28px);
    max-width: 360px;
    margin-left: 14px;
    margin-right: auto;
    padding: 24px 0 34px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 12px;
    font-size: 15px;
  }

  .hero-usp {
    gap: 7px;
    margin-top: 14px;
  }

  .hero-usp li {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

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

  .hero-phone {
    align-self: flex-start;
    width: 100%;
    min-height: auto;
    padding: 0 0 0 12px;
  }

  .hero-phone strong {
    font-size: 19px;
  }

  .hero-phone span {
    font-size: 13px;
  }

  .hero-facts {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-facts li {
    font-size: 13px;
    min-height: 36px;
  }

  .strip-grid,
  .situation-grid,
  .service-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid div,
  .strip-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(17, 19, 21, .16);
  }

  .section {
    padding: 44px 0;
  }

  .section h2,
  .final-cta h2,
  .legal-content h1 {
    font-size: clamp(30px, 11vw, 42px);
  }

  .section-head {
    margin-bottom: 22px;
  }

  .mini-card,
  .service-card,
  .steps li {
    min-height: auto;
  }

  .cost-panel,
  .area-band,
  .legal-content {
    padding: 22px;
  }

  .area-band::after {
    font-size: 96px;
    bottom: -28px;
  }

  .large-text {
    font-size: 18px;
  }

  .final-cta {
    padding: 52px 0;
  }

  .mobile-call {
    display: flex;
  }

  .cookie-notice {
    left: 12px;
    bottom: 86px;
    width: min(340px, calc(100vw - 24px));
    padding: 12px;
  }

  .cookie-notice p {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

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

  .btn {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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