:root {
  --bg: #0a1624;
  --bg-2: #0f2847;
  --bg-3: #132f4f;
  --ink: #f4fafc;
  --muted: #9bb0c0;
  --line: rgba(0, 169, 183, 0.18);
  --navy: #0f2847;
  --teal: #00a9b7;
  --teal-hot: #1bc4d2;
  --orange: #ff8c00;
  --orange-hot: #ff9f2b;
  --orange-deep: #e67a00;
  --danger: #e11d2e;
  --ok: #3ecf8e;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(8, 24, 40, 0.55);
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: #0a1624;
  background-image:
    radial-gradient(1000px 520px at 90% -8%, rgba(0, 169, 183, 0.22), transparent 55%),
    radial-gradient(800px 480px at 5% 15%, rgba(255, 140, 0, 0.14), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(15, 40, 71, 0.9), transparent 60%),
    radial-gradient(rgba(255, 255, 255, 0.04) 0.7px, transparent 0.7px);
  background-size: auto, auto, auto, 18px 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(10, 22, 36, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px 18px;
  min-height: 78px;
}

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

.brand__full {
  height: 52px;
  width: auto;
  max-width: min(42vw, 260px);
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  border: 2px solid rgba(0, 169, 183, 0.45);
}

.brand__main {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.35rem;
  color: #fff;
}

.brand__accent {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.35rem;
  color: var(--teal);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__phone {
  display: none;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--teal-hot);
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 169, 183, 0.35);
  background: rgba(0, 169, 183, 0.08);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--teal-hot);
  border-radius: 2px;
}

.header__mobile {
  display: none;
  flex-direction: column;
  padding: 8px 16px 18px;
  background: rgba(10, 22, 36, 0.98);
  border-top: 1px solid var(--line);
}

.header__mobile a {
  padding: 12px 0;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.header__mobile.is-open {
  display: flex;
}

@media (min-width: 880px) {
  .header__phone {
    display: inline-flex;
  }
}

.btn--call {
  background: rgba(0, 169, 183, 0.1);
  color: var(--ink);
  border: 1px solid rgba(0, 169, 183, 0.45);
  box-shadow: inset 0 0 0 1px rgba(0, 169, 183, 0.08);
}

.btn--call:hover {
  background: rgba(0, 169, 183, 0.2);
  border-color: var(--teal);
}

.btn__ico {
  font-size: 0.95em;
  line-height: 1;
}

.module__actions,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.module__actions--top {
  margin-bottom: 18px;
}

.module__call-note {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.module__call-note a {
  color: var(--teal-hot);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.call-bar {
  padding: 28px 0;
  background: linear-gradient(90deg, rgba(0, 169, 183, 0.16), rgba(255, 140, 0, 0.08));
  border-block: 1px solid rgba(0, 169, 183, 0.28);
}

/* Night atmosphere band */
.atmosphere {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  isolation: isolate;
}

.atmosphere__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 36, 0.92) 0%, rgba(10, 22, 36, 0.72) 55%, rgba(10, 22, 36, 0.55) 100%),
    linear-gradient(0deg, rgba(15, 40, 71, 0.35), transparent 40%);
  pointer-events: none;
}

.atmosphere__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
}

.atmosphere__text {
  margin: 0;
  max-width: 36rem;
}

.atmosphere__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fff;
}

.atmosphere__text span {
  color: #c8d6e0;
  font-size: 1.02rem;
}

.atmosphere__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.call-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.call-bar__text {
  margin: 0;
  max-width: 34rem;
}

.call-bar__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-bottom: 4px;
}

.call-bar__text span {
  color: var(--muted);
}

.call-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header__nav {
  display: none;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.header__nav a:hover {
  color: var(--teal-hot);
}

.header__cta {
  white-space: nowrap;
}

@media (min-width: 960px) {
  .header__nav {
    display: flex;
  }
}

@media (max-width: 959px) {
  .header__burger {
    display: flex;
    justify-self: end;
  }

  .header__cta {
    display: none;
  }

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

@media (max-width: 560px) {
  .header__actions {
    display: none;
  }

  .brand__full {
    height: 44px;
    max-width: 70vw;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--accent {
  background: linear-gradient(180deg, var(--orange-hot), var(--orange));
  color: #0a1624;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.35);
}

.btn--accent:hover {
  background: linear-gradient(180deg, #ffb04a, var(--orange-hot));
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border: 1px solid rgba(0, 169, 183, 0.28);
}

.btn--pulse {
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.35);
  }
  50% {
    box-shadow: 0 10px 42px rgba(255, 140, 0, 0.55);
  }
}

/* MODULES: картинка целиком + офер рядом */
.hero {
  padding: 96px 0 40px;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(0, 169, 183, 0.16), transparent 55%),
    radial-gradient(700px 380px at 90% 30%, rgba(255, 140, 0, 0.1), transparent 50%),
    var(--bg);
}

.scene {
  padding: 56px 0;
}

.scene--yama {
  background: var(--bg);
}

.scene--derevo {
  background:
    linear-gradient(180deg, rgba(0, 169, 183, 0.06), transparent 40%),
    var(--bg-2);
}

.scene--dtp {
  background:
    radial-gradient(700px 360px at 85% 20%, rgba(255, 140, 0, 0.12), transparent 55%),
    var(--bg);
}

.cta {
  padding: 64px 0 88px;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(0, 169, 183, 0.14), transparent 55%),
    var(--bg);
}

.module {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 900px) {
  .module {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .module--flip .module__copy {
    order: 2;
  }

  .module--flip .module__media {
    order: 1;
  }

  .hero .module {
    grid-template-columns: minmax(240px, 420px) 1fr;
  }

  .hero .module__media {
    max-width: 420px;
  }
}

.module__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #07101a;
  border: 1px solid rgba(0, 169, 183, 0.2);
  box-shadow: var(--shadow);
}

.module__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero .module__media {
  margin-inline: auto;
  max-width: 420px;
}

.hero .module__media img {
  max-height: min(72vh, 640px);
  width: auto;
  max-width: 100%;
  margin-inline: auto;
}

.module__media--portrait {
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}

.module__media--portrait img {
  max-height: min(72vh, 640px);
  width: auto;
  max-width: 100%;
  margin-inline: auto;
}

.offer-hits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.offer-hits span {
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 169, 183, 0.2), rgba(0, 169, 183, 0.06));
  border: 1px solid rgba(0, 169, 183, 0.45);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #d7f7fa;
}

.module__copy {
  min-width: 0;
}

.hero__brand {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.hero__brand span {
  color: var(--teal);
}

.module__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  letter-spacing: 0.02em;
  line-height: 0.98;
  font-weight: 400;
}

.module__title em {
  font-style: normal;
  color: var(--orange);
}

.module__text {
  margin: 0 0 18px;
  color: #c8d6e0;
  max-width: 36rem;
}

.pills {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pills li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 169, 183, 0.4);
  background: rgba(0, 169, 183, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  color: #e8f7f9;
}

.checklist {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, var(--teal-hot), var(--teal)) center / 8px 8px no-repeat,
    rgba(0, 169, 183, 0.18);
  box-shadow: inset 0 0 0 1px rgba(0, 169, 183, 0.55);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #07101a;
  padding: 12px 0;
}

.marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  color: var(--teal-hot);
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-hot);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--center { text-align: center; }

.section-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  font-weight: 400;
}

.section-title--left { text-align: left; }

.section-lead {
  margin: 0 auto 36px;
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
}

/* HOW */
.how {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(640px 280px at 50% -10%, rgba(255, 130, 40, 0.22), transparent 60%),
    radial-gradient(420px 260px at 12% 80%, rgba(255, 90, 0, 0.1), transparent 55%),
    radial-gradient(420px 260px at 90% 70%, rgba(255, 140, 50, 0.08), transparent 55%),
    linear-gradient(180deg, #1a1511 0%, #14110f 45%, #161210 100%);
}

.how::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 14px,
      rgba(255, 106, 0, 0.045) 14px,
      rgba(255, 106, 0, 0.045) 15px
    ),
    radial-gradient(rgba(255, 220, 180, 0.05) 0.8px, transparent 0.8px);
  background-size: auto, 16px 16px;
  pointer-events: none;
}

.how::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.55), transparent);
  pointer-events: none;
}

.steps {
  display: grid;
  gap: 14px;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 22px 18px 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 120, 40, 0.1), rgba(255, 255, 255, 0.03) 42%),
    rgba(20, 16, 12, 0.72);
  border: 1px solid rgba(255, 140, 60, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  min-height: 100%;
  backdrop-filter: blur(4px);
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-hot), var(--orange-deep));
}

.step__num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: #cfc6ba;
  font-size: 0.95rem;
}

/* PROOFS */
.proofs {
  padding: 72px 0;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(255, 110, 20, 0.12), transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 22px,
      rgba(255, 255, 255, 0.015) 22px,
      rgba(255, 255, 255, 0.015) 23px
    ),
    #171310;
}

.proofs__grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 800px) {
  .proofs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof {
  padding: 24px 20px;
  border-top: 3px solid var(--orange);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.08), transparent 55%), var(--bg-3);
}

.proof h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.proof p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq {
  padding: 72px 0;
}

.faq__wrap {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .faq__wrap {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq__q::after {
  content: "+";
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}

.faq__item.is-open .faq__q::after {
  content: "–";
}

.faq__a {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq__item.is-open .faq__a {
  display: block;
}

.faq__a p {
  margin: 0;
}

/* CTA form lives inside .module */
.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 88px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 106, 0, 0.7);
  background: rgba(255, 106, 0, 0.06);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%),
    linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field select option {
  background: #151515;
  color: var(--ink);
}

.form__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.form__note a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__status {
  min-height: 1.2em;
  font-size: 0.9rem;
  font-weight: 700;
}

.form__status.ok {
  color: var(--ok);
}

.form__status.err {
  color: #ff6b7a;
}

.cta__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cfc8bc;
}

.cta__trust span {
  padding-left: 12px;
  position: relative;
}

.cta__trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer__inner {
  display: grid;
  gap: 18px;
  padding: 28px 0 18px;
}

@media (min-width: 800px) {
  .footer__inner {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: center;
  }
}

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

.footer__contacts {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.footer__contacts a:hover {
  color: var(--teal-hot);
}

.footer__meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__meta a:hover {
  color: var(--teal-hot);
}

.footer__slogan {
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--orange));
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  padding: 12px 16px;
}

/* STICKY + TOAST */
.sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.sticky .btn {
  width: 100%;
}

@media (min-width: 880px) {
  .sticky {
    display: none;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(12px);
  background: #1a1a1a;
  border: 1px solid rgba(255, 106, 0, 0.45);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 70;
  max-width: min(92vw, 420px);
  text-align: center;
  box-shadow: var(--shadow);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Hero logo — широкий логотип */
.hero .module__media {
  max-width: 480px;
  background: #07101a;
  padding: 0;
}

.hero .module__media--hero {
  max-width: 520px;
}

.hero .module__media img {
  max-height: none;
  width: 100%;
}

.module__title em.strike {
  color: #7a8a96;
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 4px;
}

.case-note {
  margin: -8px 0 18px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Icon steps */
.icon-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

@media (min-width: 900px) {
  .icon-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.icon-step {
  position: relative;
  text-align: center;
  padding: 22px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-step img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.icon-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 6px;
}

.icon-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.icon-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Proofs with icons */
.proofs__icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 700px) {
  .proofs__icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .proofs__icons {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-ico {
  padding: 22px 18px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.proof-ico img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.proof-ico h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

.brand__logo {
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}
