:root {
  --ink: #07111a;
  --ink-2: #0d1b27;
  --muted: #66727f;
  --line: #dde5ee;
  --soft: #f4f7fb;
  --white: #ffffff;
  --blue: #145ed8;
  --blue-2: #0a48b7;
  --blue-soft: #eaf2ff;
  --green: #1d9a68;
  --shadow: 0 24px 60px rgba(8, 26, 43, 0.13);
  --radius: 8px;
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(20, 94, 216, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  color: rgba(255, 255, 255, 0.86);
  background: #071019;
  font-size: 0.68rem;
  font-weight: 800;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 31px;
  gap: 1rem;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.topbar__right {
  display: flex;
  gap: 2.4rem;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 229, 238, 0.86);
  box-shadow: 0 18px 50px rgba(7, 17, 26, 0.07);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.1rem;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #111923;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-services span {
  margin-left: 0.35rem;
  font-size: 0.72em;
  transform: translateY(-1px);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-call {
  display: grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 0.85rem;
}

.header-call__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
}

.header-call strong {
  display: block;
  color: var(--blue);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}

.header-call span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 470px;
  color: var(--white);
  overflow: hidden;
  background: #071019;
}

.hero--compact {
  min-height: 430px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 25, 0.98) 0%, rgba(7, 16, 25, 0.9) 34%, rgba(7, 16, 25, 0.45) 63%, rgba(7, 16, 25, 0.18) 100%),
    radial-gradient(circle at 83% 28%, rgba(171, 105, 47, 0.34), transparent 30%),
    radial-gradient(circle at 18% 45%, rgba(20, 94, 216, 0.18), transparent 28%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: inherit;
  max-width: min(1180px, calc(100% - 40px));
  padding: 4.4rem 0 4.55rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-bottom: 1.1rem;
  color: #c9d9ee;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 4px;
  height: 14px;
  background: var(--blue);
}

.eyebrow i {
  width: 1px;
  height: 16px;
  background: var(--blue);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(4.2rem, 5.25vw, 5.65rem);
}

.hero h1 span,
.section-heading h2 span {
  color: var(--blue);
}

.hero p {
  max-width: 510px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 1.75rem 0 1.85rem;
  max-width: 610px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.proof-item .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--blue);
  border: 1px solid rgba(20, 94, 216, 0.75);
  border-radius: 999px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0 1.65rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 35px rgba(20, 94, 216, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 18px 44px rgba(20, 94, 216, 0.38);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

.btn--light {
  color: var(--blue);
  background: var(--white);
}

.btn--outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.split-section {
  padding: 4.55rem 0 4.65rem;
  background:
    radial-gradient(circle at 86% 16%, rgba(20, 94, 216, 0.09), transparent 30%),
    var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 4.6rem;
  align-items: start;
}

.section-heading {
  margin-bottom: 1.95rem;
}

.section-heading h2 {
  max-width: 430px;
  font-size: clamp(2.65rem, 3.25vw, 3.75rem);
}

.section-heading p {
  max-width: 540px;
  margin: 1rem 0 0;
  color: #263544;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 2.15rem;
}

.service-card {
  min-height: 150px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 229, 238, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(7, 17, 26, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 94, 216, 0.35);
  box-shadow: 0 24px 48px rgba(20, 94, 216, 0.11);
}

.service-card .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 0.85rem;
  color: var(--blue);
}

.service-card h3,
.feature h3,
.article-card h3,
.value-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p,
.article-card p,
.value-card p {
  margin: 0.75rem 0 0;
  color: #263544;
  font-size: 0.78rem;
  line-height: 1.55;
}

.booking-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-card__head {
  padding: 1.55rem 2rem 1.35rem;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--blue), #003b9d);
}

.booking-card__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.booking-card__head p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.8rem;
  line-height: 1.35;
}

.booking-form {
  display: grid;
  gap: 0.62rem;
  padding: 1.35rem 2rem 1.55rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: #304154;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.field-error {
  min-height: 0;
  color: #b42318;
  font-size: 0.76rem;
  line-height: 1.2;
}

.field-error:empty {
  display: none;
}

.field [aria-invalid="true"] {
  border-color: #d92d20;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 36px;
  padding: 0 0.85rem;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid #cfd8e3;
  border-radius: 5px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 54px;
  padding-top: 0.6rem;
  resize: vertical;
}

.home-booking .field {
  position: relative;
  gap: 0;
}

.home-booking .field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-booking input::placeholder,
.home-booking textarea::placeholder {
  color: #788390;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 94, 216, 0.09);
  outline: none;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 116px;
  gap: 0.75rem;
  align-items: end;
}

.captcha {
  display: grid;
  place-items: center;
  min-height: 36px;
  color: var(--ink);
  background: #f3f6fa;
  border: 1px solid #dbe3ec;
  border-radius: 5px;
  font: 900 1.45rem/1 "Courier New", monospace;
  letter-spacing: 0.35em;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.25rem 0 0;
  color: #637080;
  font-size: 0.82rem;
}

.form-note .icon {
  color: var(--green);
}

.feature-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 16, 25, 0.98), rgba(9, 26, 40, 0.98)),
    #071019;
}

.feature-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1.05rem;
  padding: 2.35rem 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.feature:last-child {
  border-right: 0;
}

.feature .icon {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.feature p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0a3f95;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/home-emergency-bg.png") center right / cover no-repeat;
}

.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 230px;
  padding: 2.85rem 0;
}

.cta-band h2 {
  max-width: 540px;
  font-size: clamp(3.6rem, 5vw, 5.35rem);
}

.cta-band p {
  max-width: 590px;
  margin: 1rem 0 1.3rem;
  color: rgba(255, 255, 255, 0.86);
}

.support-badge {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.support-badge span {
  display: block;
  font-size: 1.55rem;
}

.areas {
  padding: 3.25rem 0 3.3rem;
  text-align: center;
  background: var(--white);
}

.areas h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 3.2vw, 3.55rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.areas__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.areas__note {
  margin: 1rem 0 0;
  color: #75808b;
  font-size: 0.92rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0 1rem;
  color: #263544;
  background: var(--white);
  border: 1px solid #dfe7f0;
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(7, 17, 26, 0.07);
  font-size: 0.86rem;
  font-weight: 800;
}

.chip .icon {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.page-hero {
  position: relative;
  min-height: 420px;
  color: var(--white);
  overflow: hidden;
  background: #071019;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 25, 0.93), rgba(7, 16, 25, 0.62), rgba(7, 16, 25, 0.24)),
    radial-gradient(circle at 28% 38%, rgba(20, 94, 216, 0.24), transparent 32%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: inherit;
  padding: 5.6rem 0 4.2rem;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 6.5vw, 6.8rem);
}

.page-hero p {
  max-width: 640px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.content-section {
  padding: 4.6rem 0 5rem;
  background:
    radial-gradient(circle at 91% 12%, rgba(20, 94, 216, 0.075), transparent 28%),
    var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 4rem;
  align-items: start;
}

.prose h2 {
  margin: 0 0 1rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.prose h3 {
  margin: 2.2rem 0 0.6rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.prose p {
  max-width: 760px;
  margin: 0 0 1.1rem;
  color: #172635;
}

.prose strong {
  font-weight: 900;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 2rem;
  margin: 1.4rem 0 2.5rem;
  padding: 0;
  list-style: none;
}

.check-grid li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #172635;
  font-weight: 700;
}

.check-grid .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.article-list {
  display: grid;
  gap: 1rem;
}

.article-card {
  padding: 1.55rem 0;
  border-top: 1px solid var(--line);
}

.article-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
}

.aside-card {
  position: sticky;
  top: 128px;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 17, 26, 0.08);
}

.aside-card h2 {
  margin: 0 0 0.4rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.aside-card p {
  margin: 0 0 1rem;
  color: #3b4a59;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}

.aside-card img {
  width: 100%;
  border-radius: 5px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 4rem;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 2rem;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-point .icon {
  width: 24px;
  height: 24px;
  margin-top: 0.15rem;
  color: var(--blue);
}

.contact-point strong {
  display: block;
  line-height: 1.25;
}

.contact-point span,
.contact-point a {
  color: #39495a;
}

.contact-form-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form .field--full {
  grid-column: 1 / -1;
}

.service-cta {
  padding: 5rem 0;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 16, 25, 0.92), rgba(7, 16, 25, 0.94)),
    url("assets/engine.jpg") center / cover no-repeat;
}

.service-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, #0e80bd, #0a5eb1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  box-shadow: 12px 16px 30px rgba(0, 0, 0, 0.32);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-link:hover {
  transform: translateY(-3px);
  box-shadow: 14px 20px 34px rgba(0, 0, 0, 0.42);
}

.site-footer {
  color: rgba(255, 255, 255, 0.85);
  background:
    radial-gradient(circle at 20% 0%, rgba(20, 94, 216, 0.17), transparent 31%),
    #071019;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.footer-logo {
  width: 210px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.site-footer p {
  max-width: 310px;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-col h3 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 0.45rem 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a,
.socials span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.8);
  background: var(--blue);
  font-size: 0.82rem;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.footer-bottom a,
.footer-bottom__inner > span:last-child span {
  margin-left: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal:nth-child(2) {
  animation-delay: 90ms;
}

.reveal:nth-child(3) {
  animation-delay: 160ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .header__inner {
    grid-template-columns: 220px auto auto;
  }

  .nav {
    gap: 1.15rem;
  }

  .header-call strong {
    font-size: 1rem;
  }

  .split-grid,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .aside-card {
    max-width: 560px;
  }

  .aside-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .topbar__right,
  .header-call {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 20px 1.1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(7, 17, 26, 0.12);
  }

  .menu-open .nav {
    display: flex;
  }

  .nav a {
    min-height: 48px;
  }

  .hero,
  .hero--compact {
    min-height: auto;
  }

  .hero__content,
  .page-hero__content {
    min-height: 560px;
    padding: 4rem 0;
  }

  .hero__proof,
  .feature-band__grid,
  .footer-main,
  .service-cta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .service-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .support-badge {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .page-hero h1 {
    font-size: 3.5rem;
  }

  .hero__proof,
  .feature-band__grid,
  .footer-main,
  .service-cta__grid,
  .value-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-inline: 0;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom__inner {
    flex-direction: column;
  }

  .footer-bottom a,
  .footer-bottom__inner > span:last-child span {
    margin: 0 1rem 0 0;
  }
}
