:root {
  --bg: #000;
  --bg-soft: #050506;
  --surface: rgba(7, 7, 9, 0.88);
  --surface-strong: #09090b;
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #b2b6c0;
  --accent: #e10613;
  --accent-soft: #ff2f3d;
  --accent-glow: rgba(225, 6, 19, 0.35);
  --radius: 20px;
  --container: 1220px;
  --easing: cubic-bezier(0.2, 0.65, 0.17, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  background:
    radial-gradient(circle at 86% 2%, rgba(225, 6, 19, 0.16), transparent 34%),
    radial-gradient(circle at 0% 42%, rgba(225, 6, 19, 0.08), transparent 28%),
    #000;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 45%, rgba(225, 6, 19, 0.04)),
    radial-gradient(circle at 82% 10%, rgba(225, 6, 19, 0.08), transparent 22%);
  mix-blend-mode: soft-light;
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea,
  .faq-trigger,
  .burger {
    cursor: none;
  }
}

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

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

main,
header,
footer {
  position: relative;
  z-index: 2;
}

main {
  overflow-x: hidden;
  overflow-x: clip;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  top: 8%;
  right: -110px;
  z-index: 0;
  background: radial-gradient(circle, rgba(225, 6, 19, 0.28) 0%, rgba(225, 6, 19, 0) 68%);
  pointer-events: none;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-soft);
}

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

.section-head h2,
.hero h1 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-family: "Unbounded", "Segoe UI", sans-serif;
}

.section-head h2 {
  font-size: clamp(1.78rem, 3vw, 2.8rem);
  max-width: 920px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 120;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #ff616b 100%);
  box-shadow: 0 0 18px rgba(225, 6, 19, 0.65);
  transition: width 0.1s linear;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.7) 1px, transparent 0);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  z-index: 130;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-cursor.is-active {
  opacity: 1;
}

.custom-cursor__dot,
.custom-cursor__ring {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.custom-cursor__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.82);
}

.custom-cursor__ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: width 0.22s var(--easing), height 0.22s var(--easing), border-color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
}

.custom-cursor__label {
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.15s ease;
  transform: translateY(1px);
}

.custom-cursor.is-hover .custom-cursor__ring {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(225, 6, 19, 0.22);
  box-shadow: 0 0 34px rgba(225, 6, 19, 0.42);
}

.custom-cursor.is-text .custom-cursor__label {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor,
  .page-noise {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--easing), color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  will-change: transform;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 6, 19, 0.28);
}

.btn--accent:hover {
  transform: translateY(-3px);
  background: #ef1f2d;
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.btn--ghost:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
  background: rgba(225, 6, 19, 0.08);
}

.btn--small {
  margin-top: 16px;
  width: 100%;
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--small:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 115;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(6, 7, 9, 0.84);
  backdrop-filter: blur(10px);
}

.header__inner {
  height: 116px;
  display: grid;
  grid-template-columns: minmax(188px, 230px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 3.4vw, 58px);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.header .logo {
  justify-self: start;
}

.header .logo img {
  width: auto;
  height: clamp(64px, 5vw, 84px);
  max-width: 100%;
  object-fit: contain;
}

.footer .logo img {
  width: auto;
  height: 74px;
  max-width: 180px;
  object-fit: contain;
}

.logo img {
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 26px);
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--easing);
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 190px 0 110px;
  overflow: hidden;
}

.hero__media,
.hero__overlay,
.hero__layer {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.82) 72%, #000 100%),
    radial-gradient(circle at 72% 30%, rgba(225, 6, 19, 0.2), transparent 44%);
}

.hero__layer--glow {
  inset: auto auto 11% 58%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 19, 0.45) 0%, rgba(225, 6, 19, 0) 62%);
  filter: blur(8px);
}

.hero__layer--ring {
  inset: auto auto 18% 72%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 8px rgba(225, 6, 19, 0.16);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

.hero h1 {
  margin-bottom: 18px;
  max-width: 940px;
  font-size: clamp(2.1rem, 5vw, 4.45rem);
}

.hero__lead {
  margin: 0;
  max-width: 760px;
  color: #d4d9e2;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

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

.hero__benefits {
  margin: 34px 0 0;
  padding: 24px;
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(15, 15, 17, 0.72), rgba(15, 16, 20, 0.62));
  backdrop-filter: blur(4px);
}

.hero__benefits strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero__benefits span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  overflow: hidden;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

.hero__ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(2.15rem, 6.8vw, 6.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.16);
  line-height: 0.95;
  padding: 8px 0 12px;
  animation: ticker 42s linear infinite;
  text-shadow: none;
  mix-blend-mode: screen;
}

.hero__ticker-track span {
  padding-right: 92px;
}

.card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(12, 12, 14, 0.94), rgba(3, 3, 5, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.08), transparent 34%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
}

.tilt-card {
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.tilt-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.23);
}

.overlap-stage {
  position: relative;
  z-index: 4;
  isolation: isolate;
  background: #000;
}

.about {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 100svh;
  padding-top: 132px;
  padding-bottom: 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 8%, rgba(225, 6, 19, 0.11), transparent 30%),
    linear-gradient(180deg, #000 0%, #040405 100%);
}

.about__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.about__text p {
  margin: 0 0 16px;
  color: #e1e4eb;
}

.about__facts {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about__facts div {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
  background: rgba(5, 5, 7, 0.92);
}

.about__facts span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
}

.about__facts p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.about__media {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 0.8fr;
}

.about__media img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 370px;
}

.services {
  position: relative;
  z-index: 12;
  margin-top: 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -34px 74px rgba(0, 0, 0, 0.42);
  background:
    radial-gradient(circle at 82% 0%, rgba(225, 6, 19, 0.12), transparent 32%),
    linear-gradient(180deg, #030304 0%, #000 100%);
}

.service-content {
  margin-top: 0;
  display: grid;
  gap: 18px;
}

.service-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card h3,
.promo h3,
.steps h3,
.contact-form h3,
.review-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.service-card__image {
  flex: 0 0 auto;
  width: 100%;
  height: 176px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.service-card ul {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: #dce0e7;
}

.service-card li {
  margin-bottom: 8px;
}

.service-card .btn {
  margin-top: auto;
}

.meta {
  margin: 0 0 7px;
  font-size: 0.94rem;
  color: #e0e4eb;
}

.meta span {
  color: #95a0ad;
}

.promo {
  margin-top: 22px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
}

.promo p {
  color: #d8dde6;
}

.promo img {
  width: 100%;
  max-height: 380px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
}

.how {
  position: relative;
  z-index: 5;
  background:
    radial-gradient(circle at 0% 12%, rgba(225, 6, 19, 0.08), transparent 28%),
    #000;
}

.how__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
  background: rgba(5, 5, 7, 0.9);
  transition: transform 0.35s var(--easing), border-color 0.3s ease;
}

.steps li:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.steps span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(225, 6, 19, 0.18);
  border: 1px solid rgba(225, 6, 19, 0.45);
}

.steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.how__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.how__cta {
  margin-top: 28px;
  text-align: center;
}

.reviews {
  background: #000;
}

.reviews__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.reviews__controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: rgba(20, 23, 31, 0.86);
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.slider-btn:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}

.slider-btn:disabled {
  opacity: 0.42;
}

.reviews__viewport {
  overflow: hidden;
}

.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  transition: transform 0.55s var(--easing);
}

.review-card {
  min-height: 232px;
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.review-card__top span {
  color: var(--muted);
  font-size: 0.82rem;
}

.rating {
  margin: 0 0 12px;
  letter-spacing: 0.2em;
  color: #ff4750;
}

.review-card p:last-child {
  margin: 0;
  color: #dde1e8;
}

.faq {
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.08), transparent 28%),
    #000;
}

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

.faq-item {
  width: 100%;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: rgba(5, 5, 7, 0.94);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  font: inherit;
  font-weight: 700;
}

.faq-trigger span {
  min-width: 0;
}

.faq-trigger i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-style: normal;
  transition: transform 0.35s var(--easing), background-color 0.2s ease;
}

.faq-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--easing), opacity 0.3s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 18px 18px;
  color: #c5cad4;
}

.faq-item.is-open .faq-trigger i {
  transform: rotate(45deg);
  background: rgba(225, 6, 19, 0.16);
}

.faq-item.is-open .faq-panel {
  opacity: 1;
}

.contacts {
  padding-top: 0;
  overflow: hidden;
}

.contacts__bg {
  position: relative;
  height: 280px;
}

.contacts__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, #000 86%);
}

.contacts__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts__layout {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.contacts__info,
.contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  padding: 26px;
  background: rgba(5, 5, 7, 0.94);
  backdrop-filter: blur(8px);
}

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

.contact-list span {
  color: #8f97a4;
}

.contact-list a {
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--accent-soft);
}

.map-wrap {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--surface-border);
}

.map-wrap iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
}

.contact-form p {
  margin: 10px 0 18px;
  color: #d8dde6;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2b2f37;
  background: #050506;
  color: #fff;
  padding: 14px;
  font: inherit;
  transition: outline-color 0.2s ease, border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent-soft);
  border-color: transparent;
}

.contact-form .policy-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 8px 0 18px;
  color: #9aa2af;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-form .policy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  appearance: none;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .policy-check input:checked {
  border-color: var(--accent);
  background:
    linear-gradient(135deg, transparent 0 42%, #fff 43% 57%, transparent 58%),
    linear-gradient(45deg, transparent 0 48%, #fff 49% 63%, transparent 64%),
    var(--accent);
  box-shadow: 0 0 18px rgba(225, 6, 19, 0.32);
}

.contact-form .policy-check input:focus {
  outline: 1px solid var(--accent-soft);
  outline-offset: 3px;
}

.contact-form .policy-check a {
  color: #dfe4ed;
  border-bottom: 1px solid rgba(225, 6, 19, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-form .policy-check a:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #000;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: end;
}

.footer__contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  flex-wrap: wrap;
}

.footer__contacts a {
  color: #c2c9d4;
  transition: color 0.2s ease;
}

.footer__contacts a:hover {
  color: var(--accent-soft);
}

.footer__legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: flex-end;
}

.footer__legal a {
  color: #8d95a2;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--accent-soft);
}

.copyright {
  margin: 12px 0 0;
  color: #7d8694;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.65s var(--easing), transform 0.65s var(--easing);
}

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

.magnetic {
  will-change: transform;
}

.layer {
  will-change: transform;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1150px) {
  .header__inner {
    height: 96px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header .logo img {
    height: 66px;
  }

  .nav {
    position: fixed;
    inset: 92px 0 auto;
    padding: 16px 24px 20px;
    flex-direction: column;
    align-items: center;
    background: rgba(8, 10, 14, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-122%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--easing);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .about__grid,
  .how__grid,
  .contacts__layout,
  .promo {
    grid-template-columns: 1fr;
  }

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

  .reviews__track {
    grid-auto-columns: calc((100% - 12px) / 2);
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  .hero,
  .overlap-stage,
  .section,
  .footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .container {
    width: calc(100% - 36px);
    max-width: 100%;
  }

  .section {
    padding: 86px 0;
  }

  .kicker {
    margin-bottom: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.075em;
  }

  .section-head {
    position: relative;
    margin-bottom: 34px;
    padding-left: 0;
    padding-bottom: 18px;
  }

  .section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 1px;
    background: rgba(225, 6, 19, 0.72);
    box-shadow: 0 0 12px rgba(225, 6, 19, 0.22);
  }

  .section-glow {
    display: none;
  }

  .header {
    inset: 0 0 auto;
    width: 100%;
    background: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid rgba(225, 6, 19, 0.22);
    backdrop-filter: blur(12px);
  }

  .header__inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    min-width: 0;
    flex: 0 1 auto;
  }

  .header .logo img {
    width: auto;
    height: 44px;
    max-height: none;
  }

  .footer .logo img {
    width: auto;
    height: 58px;
    max-width: 134px;
  }

  .burger {
    position: relative;
    z-index: 125;
    flex: 0 0 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    transition: border-color 0.25s ease, background 0.25s ease;
  }

  .burger span {
    width: 18px;
    margin: 0;
    transform-origin: center;
    transition: transform 0.28s var(--easing), opacity 0.2s ease;
  }

  .burger span + span {
    margin-top: 0;
  }

  .burger[aria-expanded="true"] {
    border-color: rgba(225, 6, 19, 0.55);
    background: rgba(225, 6, 19, 0.12);
  }

  .burger[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .burger[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav {
    inset: 80px 18px auto;
    width: auto;
    max-height: calc(100dvh - 96px);
    padding: 18px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background:
      radial-gradient(circle at 92% 0%, rgba(225, 6, 19, 0.19), transparent 34%),
      rgba(0, 0, 0, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.56);
    transform: translate3d(0, -10px, 0) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.28s var(--easing);
  }

  .nav.is-open {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 56px;
    align-items: start;
    background: #000;
  }

  .hero__media {
    inset: 0;
    width: 100%;
    right: 0;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: 57% center;
    filter: saturate(1.08) contrast(1.08) brightness(0.82);
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 56%, rgba(0, 0, 0, 0.88) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.74) 68%, #000 100%),
      radial-gradient(circle at 86% 18%, rgba(225, 6, 19, 0.12), transparent 34%);
  }

  .hero__layer {
    display: none;
  }

  .hero__content {
    position: relative;
    width: 100%;
    max-width: none;
    padding-top: clamp(18px, 4svh, 34px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.88rem, 9.35vw, 2.62rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.66);
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.48;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.7);
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    margin-top: 26px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(7, 7, 9, 0.9), rgba(0, 0, 0, 0.84)),
      radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.16), transparent 36%);
  }

  .hero__benefits strong {
    margin-bottom: 4px;
    font-size: 0.9rem;
  }

  .hero__benefits span {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero__ticker {
    display: block;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 74px;
    margin-top: clamp(30px, 6svh, 52px);
    opacity: 0.58;
    z-index: 2;
  }

  .hero__ticker-track {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
    letter-spacing: 0.17em;
    color: rgba(255, 255, 255, 0.075);
    line-height: 0.95;
    padding: 0;
    animation-duration: 68s;
    mix-blend-mode: screen;
  }

  .hero__ticker-track span {
    padding-right: 70px;
  }

  .about__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about__facts div {
    padding: 14px;
  }

  .about__facts span {
    font-size: 1.48rem;
  }

  .about__facts p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .about__media {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about__media img:nth-child(2) {
    display: none;
  }

  .about__media img {
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: 560px;
    aspect-ratio: 4 / 5;
  }

  .service-group {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about {
    position: relative;
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 94px;
    overflow: hidden;
    background:
      linear-gradient(180deg, #000 0%, #040000 42%, #000 100%),
      radial-gradient(ellipse at 100% 0%, rgba(225, 6, 19, 0.045), transparent 38%),
      #000;
  }

  .services {
    margin-top: 0;
    padding-top: 94px;
    border-radius: 26px 26px 0 0;
    background:
      radial-gradient(circle at 80% 0%, rgba(225, 6, 19, 0.13), transparent 34%),
      #000;
  }

  .services .section-head h2,
  .about .section-head h2,
  .how .section-head h2,
  .reviews .section-head h2,
  .faq .section-head h2,
  .contacts h2 {
    font-size: clamp(1.8rem, 8.7vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .service-content {
    gap: 14px;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(9, 9, 11, 0.95), rgba(0, 0, 0, 0.97)),
      radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.09), transparent 34%);
  }

  .service-card__image {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }

  .service-card h3 {
    font-size: clamp(1.04rem, 5vw, 1.28rem);
    line-height: 1.24;
  }

  .service-card ul {
    margin: 12px 0 16px;
  }

  .service-card li {
    margin-bottom: 7px;
  }

  .meta {
    font-size: 0.9rem;
  }

  .promo {
    position: relative;
    overflow: hidden;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(9, 9, 11, 0.96), rgba(0, 0, 0, 0.98)),
      radial-gradient(circle at 100% 0%, rgba(225, 6, 19, 0.14), transparent 38%);
  }

  .promo img {
    display: none;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    position: relative;
    border-radius: 18px;
  }

  .faq-trigger {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 12px;
    min-height: 86px;
    padding: 18px;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .faq-trigger i {
    width: 38px;
    height: 38px;
    justify-self: end;
  }

  .faq-panel p {
    padding: 0 18px 18px;
  }

  .steps li {
    position: relative;
    overflow: hidden;
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .steps span {
    width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }

  .how__media img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

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

  .reviews__track {
    grid-auto-columns: 100%;
  }

  .review-card {
    position: relative;
    overflow: hidden;
  }

  .review-card__top {
    flex-direction: column;
    gap: 4px;
  }

  .contacts {
    padding-top: 0;
  }

  .contacts__bg {
    height: 190px;
  }

  .contacts__layout {
    margin-top: -28px;
    gap: 14px;
  }

  .contacts__info,
  .contact-form {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-list {
    gap: 10px;
  }

  .contact-list li {
    overflow-wrap: anywhere;
  }

  .map-wrap iframe {
    min-height: 240px;
  }

  .contact-form .btn {
    width: 100%;
  }

  .footer {
    padding: 34px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .footer__contacts {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .footer__legal {
    justify-content: flex-start;
    padding-top: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 28px);
  }

  .header__inner {
    height: 64px;
  }

  .header .logo img {
    width: auto;
    height: 39px;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .hero__content {
    padding-top: 14px;
  }

  .hero h1 {
    font-size: clamp(1.78rem, 9.7vw, 2.28rem);
  }

  .hero__ticker {
    height: 64px;
    margin-top: 30px;
  }

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

  .nav {
    inset: 74px 14px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* Policy page */
.policy-page {
  min-height: 100vh;
  background: #000;
}

.policy-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}

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

.policy-header .logo img {
  width: clamp(128px, 13vw, 210px);
}

.policy-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 64px;
  isolation: isolate;
}

.policy-hero::before,
.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.policy-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 80% 35%, rgba(225, 6, 19, 0.32), transparent 34%);
}

.policy-hero::after {
  background: linear-gradient(180deg, transparent 50%, #000 100%);
}

.policy-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.85) contrast(1.08);
}

.policy-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.policy-breadcrumb a:hover {
  color: var(--accent);
}

.policy-hero h1 {
  max-width: 1280px;
  margin: 14px 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.policy-hero p:not(.kicker) {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.policy-section {
  padding-top: clamp(58px, 7vw, 108px);
}

.policy-card {
  max-width: 1280px;
  padding: clamp(24px, 4.2vw, 66px);
}

.policy-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

.policy-card p + p {
  margin-top: 22px;
}

.policy-back {
  margin-top: 28px;
}

@media (max-width: 720px) {
  .policy-header__inner {
    min-height: 78px;
  }

  .policy-header .btn {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.84rem;
  }

  .policy-hero {
    min-height: 390px;
    padding: 122px 0 50px;
  }

  .policy-breadcrumb {
    margin-bottom: 22px;
    font-size: 0.9rem;
  }

  .policy-hero h1 {
    letter-spacing: -0.06em;
  }
}
