/* ================================
   Auto landing
================================ */

.auto-landing {
  --auto-black: #05070b;
  --auto-panel: rgba(255, 255, 255, 0.045);
  --auto-panel-strong: rgba(255, 255, 255, 0.07);
  --auto-white: #ffffff;
  --auto-text: rgba(255, 255, 255, 0.78);
  --auto-muted: rgba(255, 255, 255, 0.56);
  --auto-border: rgba(255, 255, 255, 0.12);
  --auto-border-strong: rgba(255, 255, 255, 0.2);
  --auto-lime: #d9ff00;

  background: var(--auto-black);
  color: var(--auto-white);
}

/* ================================
   Hero
================================ */

.auto-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--auto-black);
}

.auto-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 11, 0.98) 0%,
      rgba(5, 7, 11, 0.92) 28%,
      rgba(5, 7, 11, 0.62) 52%,
      rgba(5, 7, 11, 0.12) 100%
    );

  pointer-events: none;
}

.auto-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    radial-gradient(circle at 18% 52%, rgba(217, 255, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08) 0%, rgba(5, 7, 11, 0.16) 55%, rgba(5, 7, 11, 0.9) 100%);

  pointer-events: none;
}

.auto-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("../images/auto-landing/hero.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  pointer-events: none;
}

.auto-hero__container {
  position: relative;
  z-index: 3;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding-top: 132px;
  padding-bottom: 76px;
}

.auto-hero__content {
  width: min(100%, 900px);
}

.auto-hero__title {
  max-width: 900px;
  margin: 0;

  color: var(--auto-white);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(56px, 5.35vw, 108px);
  line-height: 0.93;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.auto-hero__text {
  width: min(100%, 620px);
  margin: 36px 0 0;

  color: var(--auto-text);

  font-size: 23px;
  line-height: 1.48;
  font-weight: 500;
}

.auto-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-top: 42px;
}

.auto-hero__button {
  min-width: 244px;
  min-height: 62px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 0 32px;

  border-radius: 10px;

  font-size: 17px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;

  transition: 0.2s ease;
}

.auto-hero__button--primary {
  border: 1px solid var(--auto-lime);
  background: var(--auto-lime);
  color: #05070b;
  box-shadow: 0 18px 48px rgba(217, 255, 0, 0.22);
}

.auto-hero__button--secondary {
  border: 1px solid var(--auto-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--auto-white);
  backdrop-filter: blur(14px);
}

.auto-hero__button:hover {
  transform: translateY(-2px);
}

.auto-hero__features {
  display: flex;
  align-items: center;
  gap: 52px;

  margin-top: 64px;
}

.auto-hero-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auto-hero-feature__icon {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(217, 255, 0, 0.68);
  border-radius: 999px;

  color: var(--auto-lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;

  background: rgba(217, 255, 0, 0.045);
}

.auto-hero-feature__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auto-hero-feature__text strong,
.auto-hero-feature__text span {
  font-size: 17px;
  line-height: 1.18;
  font-weight: 800;
}

.auto-hero-feature__text span {
  color: var(--auto-text);
}

/* ================================
   Shared
================================ */

.auto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.auto-kicker span {
  color: var(--auto-lime);
  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-weight: 900;
}

.auto-title {
  margin: 0;

  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(46px, 4.25vw, 82px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.auto-title span {
  color: var(--auto-lime);
}

.auto-text {
  width: min(100%, 560px);
  margin: 24px 0 0;

  color: var(--auto-text);

  font-size: 19px;
  line-height: 1.45;
  font-weight: 500;
}

/* ================================
   Builder
================================ */

.auto-builder {
  position: relative;
  overflow: hidden;

  min-height: 100svh;
  padding: 86px 0 72px;

  background:
    radial-gradient(circle at 18% 40%, rgba(217, 255, 0, 0.07), transparent 30%),
    #05070b;
}

.auto-builder__container {
  min-height: calc(100svh - 158px);

  display: grid;
  grid-template-columns: minmax(410px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: 56px;
}

.auto-direction-list {
  display: grid;
  gap: 14px;

  margin-top: 30px;
}

.auto-direction {
  width: 100%;
  min-height: 94px;

  display: grid;
  grid-template-columns: 52px 1fr 40px;
  align-items: center;
  gap: 18px;

  padding: 16px 18px;

  border: 1px solid var(--auto-border);
  border-radius: 16px;

  background: var(--auto-panel);

  color: #ffffff;
  text-align: left;

  cursor: pointer;

  transition: 0.2s ease;
}

.auto-direction:hover,
.auto-direction.is-active {
  border-color: rgba(217, 255, 0, 0.76);
  background: rgba(217, 255, 0, 0.045);
}

.auto-direction__num {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(217, 255, 0, 0.34);
  border-radius: 12px;

  color: var(--auto-lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.auto-direction__content {
  display: grid;
  gap: 7px;
}

.auto-direction__content strong {
  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.auto-direction__content small {
  color: var(--auto-muted);

  font-size: 14px;
  line-height: 1.32;
  font-weight: 500;
}

.auto-direction__arrow {
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--auto-border);
  border-radius: 999px;

  color: var(--auto-lime);

  font-size: 21px;
}

.auto-builder__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;

  margin-top: 18px;
  padding: 18px 20px;

  border: 1px solid var(--auto-border);
  border-radius: 16px;

  background: var(--auto-panel);
}
@media screen and (max-width:1000px){
    
.auto-builder__cta {
        grid-template-columns: 1fr;
}
}
.auto-builder__cta strong {
  display: block;

  margin-bottom: 5px;

  color: #ffffff;

  font-size: 16px;
  line-height: 1.2;
}

.auto-builder__cta span {
  color: var(--auto-muted);

  font-size: 13px;
  line-height: 1.3;
}

.auto-builder__cta a {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 0 20px;

  border-radius: 9px;

  background: var(--auto-lime);
  color: #05070b;

  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;

  white-space: nowrap;
}

.auto-preview {
  display: none;
}

.auto-preview.is-active {
  display: block;
}

.auto-preview__browser {
  overflow: hidden;

  border: 1px solid var(--auto-border);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.auto-preview__top {
  min-height: 72px;

  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;

  padding: 0 34px;

  border-bottom: 1px solid var(--auto-border);
}

.auto-preview__top strong {
  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.auto-preview__top nav {
  display: flex;
  align-items: center;
  gap: 28px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.auto-preview__top button {
  min-height: 40px;
  padding: 0 22px;

  border: 0;
  border-radius: 7px;

  background: var(--auto-lime);
  color: #05070b;

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.auto-preview__hero {
  position: relative;
  min-height: 395px;

  display: flex;
  align-items: center;

  padding: 54px 46px;

  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.95), rgba(5, 7, 11, 0.44)),
    #070a0f;
}

.auto-preview__hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  opacity: 0.55;
  filter: saturate(0.9);

  pointer-events: none;
}

.auto-preview__hero--wash::before {
  background-image: url("../images/auto-landing/preview-wash.webp");
}

.auto-preview__hero--detailing::before {
  background-image: url("../images/auto-landing/preview-detailing.webp");
}

.auto-preview__hero--service::before {
  background-image: url("../images/auto-landing/preview-service.webp");
}

.auto-preview__hero > div {
  position: relative;
  z-index: 1;
}

.auto-preview__hero h3 {
  margin: 0;

  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}

.auto-preview__hero h3 span {
  color: var(--auto-lime);
}

.auto-preview__hero p {
  max-width: 470px;

  margin: 22px 0 0;

  color: var(--auto-text);

  font-size: 18px;
  line-height: 1.45;
}

.auto-preview__footer {
  min-height: 72px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--auto-border);
}

.auto-preview__footer span {
  display: flex;
  align-items: center;

  padding: 0 28px;

  border-right: 1px solid var(--auto-border);

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.auto-preview__footer span:last-child {
  border-right: 0;
}

/* ================================
   Pricing
================================ */

.auto-pricing {
  min-height: 100svh;
  padding: 82px 0 64px;

  background:
    radial-gradient(circle at 72% 30%, rgba(217, 255, 0, 0.055), transparent 32%),
    #05070b;
}

.auto-pricing__container {
  min-height: calc(100svh - 146px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auto-pricing__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;

  margin-bottom: 38px;
}

.auto-price-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;

  padding: 7px;

  border: 1px solid var(--auto-border);
  border-radius: 14px;

  background: var(--auto-panel);
}

.auto-price-tabs button {
  min-width: 150px;
  min-height: 50px;

  border: 0;
  border-radius: 9px;

  background: transparent;
  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 1;
  font-weight: 900;

  cursor: pointer;
}

.auto-price-tabs button.is-active {
  background: var(--auto-lime);
  color: #05070b;
}

.auto-price-panel {
  display: none;
}

.auto-price-panel.is-active {
  display: block;
}

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

.auto-price-card {
  position: relative;

  min-height: 405px;

  display: flex;
  flex-direction: column;

  padding: 30px 32px 26px;

  border: 1px solid var(--auto-border);
  border-radius: 20px;

  background: var(--auto-panel);
  backdrop-filter: blur(18px);
}

.auto-price-card--featured {
  border-color: rgba(217, 255, 0, 0.86);
  box-shadow:
    0 0 0 1px rgba(217, 255, 0, 0.08),
    0 22px 72px rgba(217, 255, 0, 0.1);
}

.auto-price-card__label {
  position: absolute;
  left: 50%;
  top: 0;

  transform: translate(-50%, -50%);

  min-height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  border-radius: 8px;

  background: var(--auto-lime);
  color: #05070b;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.auto-price-card__top {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 18px;
}

.auto-price-card__top span {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(217, 255, 0, 0.38);
  border-radius: 999px;

  color: var(--auto-lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.auto-price-card h3 {
  margin: 0;

  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.auto-price-card strong {
  color: var(--auto-lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.auto-price-card p {
  margin: 18px 0 20px;

  color: var(--auto-text);

  font-size: 16px;
  line-height: 1.36;
}

.auto-price-card ul {
  display: grid;
  gap: 11px;

  margin: 0;
  padding: 20px 0 0;

  border-top: 1px solid var(--auto-border);

  list-style: none;
}

.auto-price-card li {
  position: relative;

  padding-left: 24px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.3;
}

.auto-price-card li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.42em;

  width: 8px;
  height: 8px;

  border: 1px solid var(--auto-lime);
  border-radius: 999px;
}

.auto-price-card a {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  margin-top: 30px;
  padding: 0 24px;

  border: 1px solid var(--auto-border);
  border-radius: 9px;

  color: #ffffff;
  text-decoration: none;

  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.auto-price-card--featured a {
  border-color: var(--auto-lime);
  background: var(--auto-lime);
  color: #05070b;
}

.auto-pricing__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 20px;

  margin-top: 24px;
  padding: 18px 20px;

  border: 1px solid var(--auto-border);
  border-radius: 16px;

  background: var(--auto-panel);
}

.auto-pricing__bottom > span {
  color: var(--auto-muted);

  font-size: 14px;
  line-height: 1.32;
  font-weight: 700;
}

.auto-pricing__bottom a {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 0 28px;

  border-radius: 9px;

  background: var(--auto-lime);
  color: #05070b;

  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;

  white-space: nowrap;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1300px) {
  .auto-builder__container {
    grid-template-columns: 1fr;
  }

  .auto-builder {
    min-height: auto;
  }

  .auto-builder__container {
    min-height: auto;
  }

  .auto-pricing {
    min-height: auto;
  }

  .auto-pricing__container {
    min-height: auto;
  }

  .auto-price-grid {
    grid-template-columns: 1fr;
  }

  .auto-price-card {
    min-height: auto;
  }

  .auto-pricing__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .auto-hero {
    min-height: auto;
    background:
      radial-gradient(circle at 20% 20%, rgba(217, 255, 0, 0.08), transparent 34%),
      var(--auto-black);
  }

  .auto-hero::before,
  .auto-hero::after,
  .auto-hero__bg {
    display: none;
  }

  .auto-hero__container {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 68px;
  }

  .auto-hero__title {
    font-size: clamp(42px, 12.2vw, 72px);
    line-height: 0.96;
  }

  .auto-hero__text {
    width: 100%;
    margin-top: 28px;
    font-size: 18px;
  }

  .auto-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .auto-hero__button {
    width: 100%;
    min-width: 0;
  }

  .auto-hero__features {
    display: grid;
    gap: 22px;
  }

  .auto-builder,
  .auto-pricing {
    padding: 68px 0 58px;
  }

  .auto-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .auto-text {
    font-size: 16px;
  }

  .auto-direction {
    grid-template-columns: 44px 1fr;
  }

  .auto-direction__arrow {
    display: none;
  }

  .auto-direction__num {
    width: 40px;
    height: 40px;
  }

  .auto-preview__top {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .auto-preview__top nav {
    display: none;
  }

  .auto-preview__hero {
    min-height: 320px;
    padding: 34px 22px;
  }

  .auto-preview__footer {
    grid-template-columns: 1fr;
  }

  .auto-preview__footer span {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--auto-border);
  }

  .auto-pricing__head {
    grid-template-columns: 1fr;
  }

  .auto-price-tabs {
    grid-template-columns: 1fr;
  }

  .auto-price-tabs button {
    width: 100%;
  }
}


/* ================================
   Builder mockup image override
================================ */

.auto-builder__right {
  min-width: 0;
}

.auto-mockup {
  display: none;
}

.auto-mockup.is-active {
  display: block;
}

.auto-mockup__image {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  border: 1px solid var(--auto-border);
  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    ),
    #070a0f;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);

  overflow: hidden;
}

.auto-mockup__image::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(217, 255, 0, 0.08),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      transparent 34%,
      rgba(0, 0, 0, 0.18)
    );

  pointer-events: none;
}

.auto-mockup--wash .auto-mockup__image {
  background-image:
    linear-gradient(
      135deg,
      rgba(5, 7, 11, 0.04),
      rgba(5, 7, 11, 0.12)
    ),
    url("../images/auto-landing/mockup-wash.webp");
}

.auto-mockup--detailing .auto-mockup__image {
  background-image:
    linear-gradient(
      135deg,
      rgba(5, 7, 11, 0.04),
      rgba(5, 7, 11, 0.12)
    ),
    url("../images/auto-landing/mockup-detailing.webp");
}

.auto-mockup--service .auto-mockup__image {
  background-image:
    linear-gradient(
      135deg,
      rgba(5, 7, 11, 0.04),
      rgba(5, 7, 11, 0.12)
    ),
    url("../images/auto-landing/mockup-service.webp");
}

.auto-mockup__caption {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 6px;

  margin-top: 22px;
  padding: 22px 24px;

  border: 1px solid var(--auto-border);
  border-radius: 18px;

  background: var(--auto-panel);
}

.auto-mockup__caption span {
  width: 42px;
  height: 42px;

  grid-row: span 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(217, 255, 0, 0.42);
  border-radius: 999px;

  color: var(--auto-lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.auto-mockup__caption strong {
  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.auto-mockup__caption p {
  margin: 0;

  color: var(--auto-muted);

  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

/* Убираем нижнюю служебную плашку в ценах, она ломает экран */
.auto-pricing__bottom {
  display: none;
}

@media (max-width: 1300px) {
  .auto-mockup__image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 900px) {
  .auto-mockup__image {
    aspect-ratio: 16 / 10;
    border-radius: 5px;
  }

  .auto-mockup__caption {
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 18px;
  }

  .auto-mockup__caption span {
    grid-row: auto;
  }

  .auto-mockup__caption strong {
    font-size: 18px;
  }
}


/* ================================
   Launch / final CTA
================================ */

.auto-launch {
  position: relative;
  overflow: hidden;

  min-height: 100svh;
  padding: 88px 0 72px;

  background: #05070b;
}

.auto-launch__bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 11, 0.98) 0%,
      rgba(5, 7, 11, 0.94) 34%,
      rgba(5, 7, 11, 0.7) 58%,
      rgba(5, 7, 11, 0.3) 100%
    ),
    radial-gradient(
      circle at 18% 46%,
      rgba(217, 255, 0, 0.075),
      transparent 34%
    ),
    url("../images/auto-landing/launch-bg.webp"),
    #05070b;

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  opacity: 1;

  pointer-events: none;
}

.auto-launch__container {
  position: relative;
  z-index: 1;

  min-height: calc(100svh - 160px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auto-launch__main {
  display: grid;
  grid-template-columns: minmax(460px, 0.94fr) minmax(460px, 0.76fr);
  align-items: center;
  gap: 82px;
}

.auto-launch__left .auto-title {
  max-width: 760px;
}

.auto-launch__left .auto-text {
  max-width: 690px;
}

.auto-launch-steps {
  display: grid;
  gap: 12px;

  margin-top: 34px;
}

.auto-launch-step {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: stretch;

  min-height: 88px;

  border: 1px solid var(--auto-border);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.038);
  backdrop-filter: blur(16px);

  overflow: hidden;
}

.auto-launch-step > span {
  display: flex;
  align-items: center;
  justify-content: center;

  border-right: 1px solid var(--auto-border);

  color: var(--auto-lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.auto-launch-step > div {
  padding: 18px 24px;
}

.auto-launch-step strong {
  display: block;

  color: #ffffff;

  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.auto-launch-step p {
  max-width: 520px;

  margin: 6px 0 0;

  color: var(--auto-muted);

  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.auto-launch-card {
  position: relative;

  padding: 44px;

  border: 1px solid rgba(217, 255, 0, 0.42);
  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(18px);
}

.auto-launch-card__label {
  width: fit-content;

  margin-bottom: 28px;
  padding: 9px 14px;

  border: 1px solid rgba(217, 255, 0, 0.36);
  border-radius: 999px;

  background: rgba(217, 255, 0, 0.065);
  color: var(--auto-lime);

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.auto-launch-card h3 {
  margin: 0;

  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(26px, 2.1vw, 42px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.auto-launch-card p {
  margin: 24px 0 0;

  color: var(--auto-text);

  font-size: 18px;
  line-height: 1.48;
  font-weight: 500;
}

.auto-launch-card__actions {
  display: grid;
  gap: 14px;

  margin-top: 34px;
}

.auto-launch-card__button {
  min-height: 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  padding: 0 28px;

  border-radius: 10px;

  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;

  transition: 0.2s ease;
}

.auto-launch-card__button:hover {
  transform: translateY(-2px);
}

.auto-launch-card__button--primary {
  border: 1px solid var(--auto-lime);

  background: var(--auto-lime);
  color: #05070b;

  box-shadow: 0 18px 52px rgba(217, 255, 0, 0.18);
}

.auto-launch-card__button--secondary {
  border: 1px solid rgba(217, 255, 0, 0.34);

  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}

.auto-launch-card__note {
  margin-top: 28px;

  color: var(--auto-muted);

  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.auto-launch__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 34px;

  border: 1px solid var(--auto-border);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);

  overflow: hidden;
}

.auto-launch-mini {
  padding: 24px 30px;

  border-right: 1px solid var(--auto-border);
}

.auto-launch-mini:last-child {
  border-right: 0;
}

.auto-launch-mini strong {
  display: block;

  margin-bottom: 10px;

  color: #ffffff;

  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.auto-launch-mini p {
  margin: 0;

  color: var(--auto-muted);

  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.auto-launch-mini p span,
.auto-launch-mini a {
  color: var(--auto-lime);
}

/* ================================
   Launch responsive
================================ */

@media (max-width: 1300px) {
  .auto-launch {
    min-height: auto;
  }

  .auto-launch__container {
    min-height: auto;
  }

  .auto-launch__main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .auto-launch-card {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .auto-launch {
    padding: 72px 0 58px;
  }

  .auto-launch__bg {
    background:
      radial-gradient(
        circle at 18% 32%,
        rgba(217, 255, 0, 0.08),
        transparent 34%
      ),
      #05070b;
  }

  .auto-launch-step {
    grid-template-columns: 74px 1fr;
    min-height: 84px;
  }

  .auto-launch-step > span {
    font-size: 24px;
  }

  .auto-launch-step > div {
    padding: 16px;
  }

  .auto-launch-step strong {
    font-size: 17px;
  }

  .auto-launch-step p {
    font-size: 13px;
  }

  .auto-launch-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .auto-launch-card h3 {
    font-size: 25px;
  }

  .auto-launch-card p {
    font-size: 15px;
  }

  .auto-launch-card__button {
    min-height: 56px;
    font-size: 15px;
  }

  .auto-launch__bottom {
    grid-template-columns: 1fr;
  }

  .auto-launch-mini {
    border-right: 0;
    border-bottom: 1px solid var(--auto-border);
  }

  .auto-launch-mini:last-child {
    border-bottom: 0;
  }
}


/* Hide launch bottom notes */
.auto-launch__bottom {
  display: none !important;
}

.auto-launch {
  padding-bottom: 88px;
}

.auto-launch__main {
  align-items: center;
}

@media (max-width: 900px) {
  .auto-launch {
    padding-bottom: 64px;
  }
}
.auto-price-included {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(217, 255, 0, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 255, 0, 0.10), transparent 32%),
    rgba(255, 255, 255, 0.035);
}

.auto-price-included__head {
  max-width: 720px;
  margin-bottom: 24px;
}

.auto-price-included__head span {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9ff00;
}

.auto-price-included__head h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.auto-price-included__head p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.auto-price-included__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.auto-price-included__item {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
}

.auto-price-included__item span {
  display: block;
  margin-bottom: 18px;
  color: #d9ff00;
  font-size: 13px;
  font-weight: 700;
}

.auto-price-included__item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.15;
}

.auto-price-included__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .auto-price-included__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .auto-price-included {
    padding: 20px;
    border-radius: 22px;
  }

  .auto-price-included__grid {
    grid-template-columns: 1fr;
  }

  .auto-price-included__item {
    min-height: auto;
  }
}

/* YANDEX MAPS BADGE */
.auto-maps-badge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 255, 0, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 50%, rgba(217, 255, 0, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.028);
}

.auto-maps-badge__left {
  min-width: 0;
}

.auto-maps-badge__left span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #d9ff00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auto-maps-badge__left strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.auto-maps-badge__left p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.auto-maps-badge__right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.auto-maps-badge__right b {
  color: #d9ff00;
  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.auto-maps-badge__right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #d9ff00;
  color: #05070b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .auto-maps-badge {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .auto-maps-badge__right {
    justify-content: space-between;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .auto-maps-badge {
    padding: 16px;
    border-radius: 18px;
  }

  .auto-maps-badge__right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .auto-maps-badge__right a {
    width: 100%;
  }
}

/* AUTO LANDING EXTRA HEADINGS FONT FIX */
.auto-price-included__head h3,
.auto-maps-offer h3 {
  color: #ffffff;
  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.auto-price-included__head h3 {
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.92;
}

.auto-maps-offer h3 {
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 0.95;
}

/* SERVICE LANDING CASES STRIP */
.service-cases-strip {
  padding: clamp(44px, 6vw, 88px) 0 0;
}

.service-cases-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(217, 255, 0, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 255, 0, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.service-cases-strip__head span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #d9ff00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-cases-strip__head h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.service-cases-strip__head p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.55;
}

.service-cases-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-cases-strip__card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 255, 0, 0.10), transparent 36%),
    rgba(5, 8, 12, 0.72);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-cases-strip__card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 255, 0, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 255, 0, 0.16), transparent 36%),
    rgba(5, 8, 12, 0.84);
}

.service-cases-strip__card span {
  margin-bottom: auto;
  color: #d9ff00;
  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.service-cases-strip__card strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.service-cases-strip__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .service-cases-strip__inner {
    grid-template-columns: 1fr;
  }

  .service-cases-strip__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .service-cases-strip__inner {
    border-radius: 24px;
    padding: 20px;
  }

  .service-cases-strip__card {
    min-height: 190px;
  }
}
