:root {
  --black: #06090b;
  --panel: #10161b;
  --panel-2: #141a21;
  --line: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #cfd4d8;
  --yellow: #ffd000;
  --yellow-2: #f2b900;
  --green: #19d765;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 208, 0, 0.07), transparent 24rem),
    linear-gradient(90deg, #050708, #10171c 52%, #070b0e);
  color: var(--text);
  font-family: Impact, "Arial Black", "Roboto Condensed", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

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

.site-header {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(4, 7, 9, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 214px;
}

.brand img {
  width: 214px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex: 1;
}

.nav a:hover {
  color: var(--yellow);
}

.phone-top {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-width: 230px;
  font-family: Arial, sans-serif;
}

.phone-top span {
  grid-row: span 2;
  color: var(--yellow);
  font-size: 24px;
}

.phone-top strong {
  font-size: 17px;
}

.phone-top small {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.98) 0%, rgba(3, 5, 7, 0.76) 32%, rgba(3, 5, 7, 0.18) 64%, rgba(3, 5, 7, 0.55) 100%),
    linear-gradient(180deg, rgba(3, 5, 7, 0.14), rgba(3, 5, 7, 0.56));
}

.hero-content {
  padding: 48px 0 24px;
}

.hero h1 {
  width: min(580px, 58vw);
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 7.1vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
  color: var(--yellow);
  display: block;
}

.hero p {
  width: min(620px, 54vw);
  margin: 18px 0 30px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.42;
  color: #f1f2f3;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 28px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
}

.hero-points b {
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 29px;
  line-height: 1;
}

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

.btn {
  height: 52px;
  min-width: 205px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 25px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 15px;
}

.btn-yellow {
  background: linear-gradient(180deg, #ffe000, #ffc400);
  color: #101010;
  box-shadow: 0 6px 18px rgba(255, 208, 0, 0.25);
}

.btn-outline {
  border: 2px solid var(--green);
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
}

.location-badge {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 9px 16px 9px 10px;
  background: rgba(5, 7, 8, 0.86);
  border-radius: 8px;
}

.location-badge span {
  grid-row: span 2;
  color: var(--yellow);
  font-size: 34px;
}

.location-badge strong {
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}

.location-badge small {
  font-size: 15px;
}

.section,
.section-tight {
  border-bottom: 1px solid var(--line);
}

.section {
  padding: 18px 0 22px;
}

.section-tight {
  padding: 8px 0 16px;
}

.section-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 30px;
  line-height: 1;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 6px auto 0;
  background: var(--yellow);
  border-radius: 10px;
}

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

.service-card,
.benefits article,
.price-card {
  background: linear-gradient(150deg, rgba(23, 30, 37, 0.98), rgba(9, 13, 17, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card {
  min-height: 238px;
  overflow: hidden;
}

.service-image {
  position: relative;
  height: 114px;
  overflow: hidden;
  background: #171d22;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.5));
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-image span {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #090909;
  font-size: 26px;
}

.service-loaders .service-image img {
  object-position: center 18%;
}

.service-card h3 {
  margin: 12px 14px 6px;
  font-size: 22px;
  line-height: 1.02;
}

.service-card p {
  margin: 0 14px 14px;
  color: #e0e4e6;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.benefits-row {
  display: grid;
  grid-template-columns: 220px repeat(5, 1fr);
  gap: 10px;
  align-items: stretch;
}

.benefits h2 {
  align-self: center;
  margin: 0;
  font-size: 32px;
  line-height: 1.03;
}

.benefits h2 span,
.order-form h2 span,
.order-copy h2 span {
  display: block;
  color: var(--yellow);
}

.benefits article {
  text-align: center;
  padding: 18px 12px 14px;
}

.benefits b {
  display: block;
  color: var(--yellow);
  font-size: 36px;
  margin-bottom: 6px;
}

.benefits h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
}

.benefits p {
  margin: 0;
  color: #d7dcdf;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

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

.price-card {
  min-height: 130px;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: start;
  padding: 16px 22px 12px;
}

.price-icon {
  color: var(--yellow);
  font-size: 39px;
  text-align: center;
}

.price-card h3 {
  margin: 0;
  font-size: 18px;
}

.price-card p {
  margin: 3px 0 8px;
  color: #d5dade;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.price-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.price-card strong b {
  font-size: 39px;
}

.price-card .deal {
  color: var(--yellow);
  font-size: 26px;
}

.price-card a,
.order-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffe000, #ffc300);
  color: #090909;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
}

.price-note {
  margin: 10px 0 0;
  text-align: center;
  color: #cfd5d8;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.price-note::first-letter {
  color: var(--yellow);
}

.order-wrap {
  border-bottom: 1px solid var(--line);
}

.order-panel {
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  min-height: 285px;
}

.order-form {
  padding: 18px 24px 14px;
  background: linear-gradient(135deg, #ffe400, #ffc400);
  color: #070707;
}

.order-form h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1;
}

.order-form h2 span {
  color: #111;
}

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

.order-form label {
  position: relative;
  display: block;
}

.order-form label span {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 13px;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #151515;
  outline: 0;
}

.order-form input {
  height: 38px;
  padding: 0 12px 0 36px;
}

.wide {
  margin: 8px 0;
}

.order-form textarea {
  min-height: 54px;
  resize: vertical;
  padding: 12px 12px 12px 36px;
}

.order-form .wide span {
  top: 18px;
}

.order-form button {
  height: 38px;
  background: #0c1116;
  color: #fff;
}

.order-form small {
  display: block;
  margin-top: 9px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.order-side {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  min-height: 285px;
  background: #10161b;
}

.order-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 16, 0.98) 0%, rgba(8, 12, 16, 0.74) 48%, rgba(8, 12, 16, 0.08) 100%);
  z-index: 1;
}

.order-side img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.order-copy {
  position: relative;
  z-index: 2;
  padding: 32px 0 22px 32px;
}

.order-copy h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.08;
}

.order-copy ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

.order-copy li {
  margin: 12px 0;
}

.order-copy li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--yellow);
  color: #080808;
  font-size: 11px;
}

.contacts {
  padding: 12px 0 0;
}

.seo-text {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 12, 15, 0.72);
}

.seo-text h2 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 24px;
}

.seo-text p {
  margin: 0;
  max-width: 940px;
  color: #d9dee1;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

.contacts h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.contacts a,
.contacts p {
  display: grid;
  grid-template-columns: 28px max-content 1fr;
  gap: 8px;
  align-items: baseline;
  margin: 10px 0;
  color: #fff;
  font-family: Arial, sans-serif;
}

.contacts a {
  font-weight: 900;
}

.contacts span {
  color: #c8ced1;
  font-size: 12px;
  font-weight: 400;
}

.contacts a::first-letter,
.contacts p::first-letter {
  color: var(--yellow);
}

.fake-map {
  position: relative;
  height: 132px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(135deg, #e8ede7, #f4f0e1);
  background-size: 86px 100%, 100% 42px, 100%;
}

.fake-map::before,
.fake-map::after {
  content: "";
  position: absolute;
  inset: auto -20px 44px -20px;
  height: 7px;
  background: #f1c754;
  transform: rotate(-7deg);
}

.fake-map::after {
  inset: 54px -20px auto -20px;
  height: 5px;
  background: #bdd6c9;
  transform: rotate(6deg);
}

.fake-map .pin {
  position: absolute;
  left: 48%;
  top: 24px;
  color: var(--yellow);
  font-size: 38px;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

.fake-map strong {
  position: absolute;
  left: 48%;
  top: 76px;
  transform: translateX(-50%);
  color: #111;
  font-size: 20px;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    flex: none;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero h1,
  .hero p {
    width: min(660px, 100%);
  }

  .hero {
    min-height: 600px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    padding-top: 36px;
  }

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

  .benefits-row,
  .price-grid,
  .order-panel,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .benefits h2 {
    text-align: center;
    margin-bottom: 6px;
  }

  .order-side {
    min-height: 310px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 176px;
  }

  .phone-top {
    display: none;
  }

  .nav {
    gap: 24px;
    font-size: 13px;
  }

  .site-header .nav {
    flex-wrap: wrap;
    overflow: visible;
    gap: 10px 18px;
    line-height: 1.2;
  }

  .site-header .nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 7, 0.98), rgba(3, 5, 7, 0.58)),
      linear-gradient(180deg, rgba(3, 5, 7, 0.2), rgba(3, 5, 7, 0.84));
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(35px, 10.8vw, 46px);
    overflow-wrap: anywhere;
  }

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

  .hero-points {
    gap: 14px;
  }

  .hero-points div {
    width: calc(50% - 7px);
    min-width: 0;
  }

  .btn {
    width: 100%;
  }

  .location-badge {
    left: 14px;
    right: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .service-card {
    min-width: 0;
  }

  .service-card h3,
  .service-card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

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

  .price-card {
    grid-template-columns: 70px 1fr;
    padding-inline: 14px;
  }

  .order-side {
    grid-template-columns: 1fr;
  }

  .order-side img {
    width: 100%;
    opacity: 0.7;
  }

  .order-side::before {
    background: linear-gradient(90deg, rgba(8, 12, 16, 0.96), rgba(8, 12, 16, 0.55));
  }

  .contacts a,
  .contacts p {
    grid-template-columns: 28px 1fr;
  }

  .contacts span {
    grid-column: 2;
  }
}
