:root {
  --text: #111111;
  --line: rgba(255, 255, 255, 0.92);
  --card: #f4f4f4;
  --mobile-bg: #f2f2f2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

.landing {
  width: 100%;
}

.hero--mobile {
  display: none;
}

.hero--desktop {
  position: relative;
  width: 100%;
  height: 1000px;
  min-height: 100svh;
  overflow: hidden;
  background: #0e1620;
}

.hero--desktop .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero--desktop .hero__logo {
  position: absolute;
  left: 17.2%;
  top: 35.4%;
  width: 441px;
  max-width: 23vw;
  z-index: 3;
}

.hero__card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(43.55vw, 836px);
  min-height: 290px;
  padding: 68px 72px 56px;
  background: var(--card);
  z-index: 3;
}

.hero__card h1,
.hero__text-block h1 {
  margin: 0;
  font-size: clamp(38px, 3.45vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero__card .dash,
.hero__text-block .dash {
  font-weight: 300;
}

.hero__card p,
.hero__text-block p {
  margin: 28px 0 0;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.17;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero__contact {
  margin-top: 24px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
  letter-spacing: 0;
}

.hero__phone-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.hero__phone-icon {
  font-size: 1.2em;
  line-height: 1;
  transform: translateY(1px);
}

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

.hero__contact a:hover,
.hero__contact a:focus-visible {
  text-decoration: underline;
}

.guide {
  position: absolute;
  display: block;
  background: var(--line);
  z-index: 2;
  transform-origin: left center;
}

.hero--desktop .guide--vertical {
  left: 44.64%;
  top: 0;
  width: 1px;
  height: 100%;
}

.hero--desktop .guide--horizontal {
  left: 7.92%;
  top: 72.8%;
  width: 49.79%;
  height: 1px;
}

.hero--desktop .guide--diagonal-top {
  right: -1.6%;
  top: 1.4%;
  width: 21.7%;
  height: 1px;
  transform: rotate(-34.5deg);
}

.hero--desktop .guide--diagonal-bottom {
  left: 7.92%;
  top: 72.8%;
  width: 31.8%;
  height: 1px;
  transform: rotate(38deg);
}

@media (max-width: 767px) {
  .hero--desktop {
    display: none;
  }

  .hero--mobile {
    display: block;
    width: 100%;
    min-height: 100svh;
    background: var(--mobile-bg);
  }

  .hero--mobile .hero__image-wrap {
    position: relative;
    height: min(587px, 78.27svh);
    overflow: hidden;
    background: #0e1620;
  }

  .hero--mobile .hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero--mobile .hero__logo {
    position: absolute;
    left: 13.6%;
    top: 42.76%;
    width: 62.5%;
    z-index: 3;
  }

  .hero--mobile .guide--vertical {
    left: 92.78%;
    top: 0;
    width: 1px;
    height: 100%;
  }

  .hero--mobile .guide--horizontal {
    left: 0;
    top: 61.5%;
    width: 100%;
    height: 1px;
  }

  .hero--mobile .guide--diagonal-bottom {
    left: 0;
    top: 61.5%;
    width: 80.5%;
    height: 1px;
    transform: rotate(38.5deg);
  }

  .hero__text-block {
    background: var(--mobile-bg);
    padding: 42px 30px 40px;
  }

  .hero__text-block h1 {
    font-size: clamp(29px, 9.4vw, 42px);
    line-height: 1.05;
  }

  .hero__text-block p {
    margin-top: 22px;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.12;
  }

  .hero__text-block .hero__contact {
    margin-top: 24px;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.4;
  }
}
