/* ==========================================================================
   Секции лендинга. Токены и общие компоненты — в base.css
   ========================================================================== */

/* ---------- шапка ---------- */
.site-header { position: fixed; top: 12px; left: 0; right: 0; z-index: 100; padding: 0 12px; pointer-events: none; }
.site-header__bar {
  pointer-events: auto; position: relative;
  max-width: 1400px; height: var(--header-h); margin: 0 auto;
  display: flex; align-items: center; gap: clamp(16px, 2.4vw, 36px);
  padding: 0 8px 0 26px; border-radius: 32px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  color: #fff;
  transition: background-color .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-solid .site-header__bar,
.site-header.is-open .site-header__bar {
  background: rgba(255, 255, 255, .97); color: var(--ink);
  border-color: rgba(0, 0, 0, .04); box-shadow: 0 10px 40px rgba(0, 21, 61, .1);
}
.brand { display: grid; gap: 4px; flex: none; line-height: 1.05; }
.brand__name { font-size: 15px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.brand__sub { font-size: 11.5px; opacity: .66; }
.nav { display: flex; gap: clamp(16px, 2.2vw, 32px); margin-left: auto; font-size: 14px; }
.nav a { padding: 8px 0; opacity: .82; transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--orange); }
.site-header__cta { flex: none; }
.burger { display: none; place-items: center; flex: none; width: 48px; height: 48px; border-radius: 50%; }
.burger span, .burger span::before, .burger span::after {
  display: block; width: 20px; height: 1.6px; border-radius: 2px; background: currentColor;
  transition: transform .3s var(--ease), background-color .2s;
}
.burger span { position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.site-header.is-open .burger span { background: transparent; }
.site-header.is-open .burger span::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; }

/* ---------- 1. hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; min-height: max(760px, 100svh);
  color: #fff;
  background:
    radial-gradient(80% 70% at 80% 12%, rgba(33, 71, 134, .9) 0%, rgba(22, 57, 120, 0) 62%),
    linear-gradient(180deg, #0c275e 0%, #081d49 48%, #04112c 100%);
}
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; z-index: -2; width: min(64%, 1180px); }
.hero__media picture, .hero__media img { display: block; width: 100%; height: 100%; }
.hero__media img {
  object-fit: cover; object-position: 60% 20%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .4) 20%, #000 46%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .4) 20%, #000 46%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: -1; height: 34%; pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 17, 44, 0) 0%, rgba(4, 17, 44, .85) 70%, #04112c 100%);
}
.hero__inner {
  position: relative; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 12px + clamp(40px, 7vh, 88px));
  padding-bottom: clamp(150px, 17vh, 190px);
}
.hero__content { max-width: 680px; }
.hero__eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.hero__eyebrow .tag svg { width: 16px; height: 16px; color: var(--orange); }
.hero__kicker { font-size: 15px; color: rgba(255, 255, 255, .8); }
.hero__title { margin: 26px 0 24px; color: #fff; }
.hero__lead { max-width: 580px; margin-bottom: 32px; color: rgba(255, 255, 255, .8); }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero__facts li {
  display: flex; align-items: center; gap: 12px; padding: 12px 20px 12px 14px; border-radius: 20px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero__facts svg { width: 22px; height: 22px; flex: none; color: var(--orange); }
.hero__facts b { display: block; font-size: 16px; font-weight: 500; line-height: 1.2; }
.hero__facts small { display: block; font-size: 12.5px; line-height: 1.3; color: rgba(255, 255, 255, .62); }
.hero__cta { margin-bottom: 26px; }
.hero__status { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; font-size: 14.5px; color: rgba(255, 255, 255, .66); }
.hero__status b { color: #fff; font-weight: 500; }
.hero__status-dot {
  width: 8px; height: 8px; margin-right: 12px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(98, 197, 132, .22); animation: status-pulse 2.4s var(--ease) infinite;
}
@keyframes status-pulse { 50% { box-shadow: 0 0 0 7px rgba(98, 197, 132, .08); } }
.hero__caption {
  position: absolute; z-index: 1;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  bottom: clamp(150px, 17vh, 190px);
  max-width: 260px; padding: 14px 18px; border-radius: 18px;
  background: rgba(4, 17, 44, .45); border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  font-size: 13px; line-height: 1.4; color: rgba(255, 255, 255, .72);
}
.hero__caption b { display: block; margin-bottom: 2px; font-size: 15px; font-weight: 500; color: #fff; }

/* ---------- 2. цифры ---------- */
.stats-wrap { position: relative; z-index: 3; margin-top: -104px; }
.stats {
  display: grid; grid-template-columns: minmax(200px, 290px) minmax(0, 1fr); align-items: center;
  gap: clamp(24px, 3vw, 48px); padding: clamp(28px, 3vw, 40px) clamp(24px, 3.4vw, 48px);
  border-radius: var(--r); color: #fff;
  background: linear-gradient(90deg, #434c5f 0%, #3a6486 100%);
  box-shadow: 0 30px 70px rgba(0, 21, 61, .28);
}
.stats__brand img { width: 190px; height: auto; margin-bottom: 14px; }
.stats__brand p { max-width: 290px; font-size: 13.5px; line-height: 1.45; color: rgba(255, 255, 255, .72); }
.stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; }
.stats__item { padding: 4px 0 4px clamp(16px, 2vw, 28px); border-left: 1px solid rgba(255, 255, 255, .18); }
.stats__item dt {
  margin-bottom: 10px; font-size: clamp(30px, 3.1vw, 46px); font-weight: 500; line-height: 1;
  letter-spacing: -.02em; color: var(--orange); white-space: nowrap;
}
.stats__item dd { margin: 0; font-size: 14px; line-height: 1.35; color: rgba(255, 255, 255, .86); }

/* ---------- 3. логотипы ---------- */
.logos__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 40px; margin-bottom: clamp(28px, 3vw, 40px); }
.logos__head h2 { max-width: 560px; }
.logos__head p { max-width: 460px; }
.logos__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(153, 189, 210, .55); }
.logos__grid li { display: grid; place-items: center; height: clamp(92px, 9vw, 124px); padding: 12px 20px; background: var(--bg); }
.logos__grid img {
  width: auto; max-width: min(200px, 92%); max-height: 76px;
  mix-blend-mode: multiply; filter: grayscale(1) contrast(1.08); opacity: .72;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.logos__grid li:hover img { filter: none; opacity: 1; }

/* ---------- 4. проблема ---------- */
.problem__top {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: end;
  gap: clamp(28px, 5vw, 80px); margin-bottom: clamp(64px, 8vw, 112px);
}
.problem__top .h2 { margin-top: 18px; }
.problem__text p:not(.lead) { margin-top: 18px; color: var(--text-2); }
.fit { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); align-items: start; gap: clamp(32px, 5vw, 80px); }
.fit__head { position: sticky; top: calc(var(--header-h) + 48px); display: grid; justify-items: start; gap: 20px; }
.fit__head p { color: var(--text-2); }
.pains { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; padding-bottom: 36px; }
.pain { position: relative; min-height: 132px; padding: 34px 28px 28px; border-radius: var(--r); background: var(--surface); font-size: 16.5px; line-height: 1.45; }
.pain .num-dot { position: absolute; top: -13px; left: 26px; }
@media (min-width: 761px) { .pain:nth-child(even) { margin-top: 36px; margin-bottom: -36px; } }

/* ---------- 5. результат ---------- */
.section--white .card { background: var(--bg); }
.results__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.result { display: flex; flex-direction: column; gap: 20px; min-height: 290px; }
.result h3 { font-size: 21px; line-height: 1.25; }
.result p { font-size: 16px; color: var(--text-2); }
.result .icon-bubble { background: var(--surface); }
.section--white .result--dark, .result--dark {
  position: relative; overflow: hidden; justify-content: flex-end;
  background: linear-gradient(160deg, #3d475b 0%, #2b384b 100%); color: #fff;
}
.result--dark p { position: relative; font-size: 21px; font-weight: 500; line-height: 1.35; color: #fff; }
.result__cross { position: absolute; top: -34px; right: -34px; width: 180px; height: 180px; color: rgba(255, 170, 77, .38); }

/* ---------- 6. программа ---------- */
.program { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); align-items: start; gap: clamp(32px, 5vw, 80px); }
.program__aside { position: sticky; top: calc(var(--header-h) + 48px); display: grid; gap: 28px; }
.program__aside .h2 { margin-top: 18px; }
.info-card { margin: 0; padding: 26px 28px 10px; border-radius: var(--r); background: var(--surface); }
.info-card div { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.info-card div:last-child { margin-bottom: 0; border-bottom: 0; }
.info-card dt { margin-bottom: 4px; font-size: 13px; color: var(--orange); }
.info-card dd { margin: 0; font-size: 17px; line-height: 1.4; color: var(--ink); }
.modules { display: grid; gap: 12px; }
.module { border-radius: 40px; background: var(--surface); }
.module[open] { border-radius: var(--r); box-shadow: var(--shadow); }
.module summary {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(14px, 2vw, 24px);
  padding: 16px 16px 16px 20px; border-radius: inherit; cursor: pointer; list-style: none;
}
.module summary::-webkit-details-marker { display: none; }
.module__num {
  display: inline-flex; align-items: center; min-height: 38px; padding: 0 16px;
  border: 1.5px solid var(--sky); border-radius: var(--r-pill);
  font-size: 16px; font-weight: 500; color: #5b8aa6; white-space: nowrap;
}
.module__title { font-size: clamp(17px, 1.4vw, 20px); font-weight: 500; line-height: 1.3; color: var(--text); }
.module__icon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sky); color: #fff; transition: transform .35s var(--ease), background-color .25s;
}
.module__icon svg { width: 20px; height: 20px; }
.module summary:hover .module__icon { background: var(--orange); }
.module[open] .module__icon { transform: rotate(180deg); background: var(--orange); }
.module__body { display: grid; gap: 14px; padding: 4px 28px 28px 20px; font-size: 16.5px; color: var(--text-2); }
.module__tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tool-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px 9px 12px; border-radius: 18px;
  background: var(--orange-soft); color: #9a4f12; font-size: 14.5px; line-height: 1.35;
}
.tool-tag svg { width: 18px; height: 18px; flex: none; color: var(--orange); }
.program__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- 7. инструменты ---------- */
.tools {
  position: relative; overflow: hidden;
  background: radial-gradient(60% 90% at 100% 0%, rgba(22, 57, 122, .9) 0%, rgba(22, 57, 122, 0) 60%), var(--navy);
}
.tools__deco { position: absolute; top: -140px; right: -140px; width: 520px; height: 520px; color: rgba(255, 255, 255, .045); pointer-events: none; }
.tools__grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.tool {
  display: flex; flex-direction: column; gap: 18px; min-height: 300px; padding: 30px 26px 26px;
  border-radius: var(--r); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
}
.tool:hover { background: rgba(255, 255, 255, .08); border-color: rgba(242, 153, 74, .4); transform: translateY(-4px); }
.tool__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(242, 153, 74, .14); color: var(--orange); }
.tool__icon svg { width: 24px; height: 24px; }
.tool h3 { font-size: 20px; line-height: 1.25; color: #fff; }
.tool p { font-size: 15.5px; color: rgba(255, 255, 255, .66); }
.tool__label { margin-top: auto; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .42); }

/* ---------- 8. спикер ---------- */
.speaker { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: center; gap: clamp(32px, 5vw, 88px); }
.speaker__photo {
  position: relative; aspect-ratio: 1 / 1.02; margin-top: 64px; border-radius: var(--r);
  background: linear-gradient(0deg, #d0dce2 0%, #ffffff 100%);
}
.speaker__photo picture { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: center; height: 112%; }
.speaker__photo img { width: auto; height: 100%; max-width: none; object-fit: contain; object-position: bottom; }
.speaker__eyebrow {
  position: absolute; top: 20px; left: 20px; z-index: 1; padding: 9px 14px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.speaker__info .h2 { margin-bottom: 12px; }
.speaker__quote { margin-bottom: 26px; font-size: clamp(22px, 2vw, 28px); font-weight: 500; letter-spacing: -.01em; color: var(--orange); }
.speaker__roles { display: grid; gap: 12px; margin-bottom: 26px; }
.speaker__roles li { display: flex; align-items: center; gap: 14px; font-size: 18px; color: var(--ink); }
.speaker__roles li::before {
  content: ""; width: 7px; height: 17px; flex: none;
  border: 2px solid var(--orange); border-right: 0; border-radius: 17px 0 0 17px;
}
.speaker__text { display: grid; gap: 12px; max-width: 580px; margin-bottom: 28px; font-size: 16.5px; color: var(--text-2); }
.text-link { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(242, 153, 74, .7); text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: color .2s; }
.text-link:hover { color: var(--orange); }
.speaker__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0 0 32px; max-width: 580px; }
.speaker__stats div { padding-top: 14px; border-top: 1px solid #d6d6d6; }
.speaker__stats dt { font-size: clamp(26px, 2.4vw, 34px); font-weight: 500; line-height: 1; letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
.speaker__stats dd { margin: 8px 0 0; font-size: 13.5px; line-height: 1.35; color: var(--muted); }
.speaker__social-title { margin-bottom: 12px; font-size: 15px; font-weight: 500; color: var(--orange); }
.social-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; max-width: 580px; background: #d6d6d6; border-bottom: 1px solid #d6d6d6; }
.social-row li { background: var(--bg); }
.social-row a { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 8px; font-size: 15px; color: var(--text); transition: color .2s; }
.social-row a:hover { color: var(--orange); }
.social-row svg { width: 15px; height: 15px; color: var(--sky); }

/* ---------- 9. отзывы ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.review { position: relative; border-radius: var(--r); background: var(--bg); }
.review--text { grid-column: span 6; display: flex; flex-direction: column; gap: 22px; padding: clamp(26px, 3vw, 40px); }
.review__quote-mark { width: 40px; height: 40px; color: var(--orange); }
.review blockquote { display: grid; gap: 14px; margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--text); }
.person { display: flex; align-items: center; gap: 16px; }
.person img { width: 72px; height: 72px; flex: none; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--orange); }
.person b { display: block; font-size: 19px; font-weight: 500; line-height: 1.25; color: var(--ink); }
.person small { display: block; font-size: 14px; color: var(--muted); }
.review--video {
  display: block; grid-column: span 6; width: 100%; min-height: 380px; overflow: hidden; padding: 0;
  text-align: left; color: #fff; background: var(--slate); cursor: pointer;
}
.review--video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.review--video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 79, 126, .08) 0%, rgba(0, 18, 51, .12) 42%, rgba(0, 18, 51, .92) 100%);
}
.review--video:hover img { transform: scale(1.04); }
.play {
  position: absolute; top: 22px; right: 22px; z-index: 1; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: #fff;
  box-shadow: 0 0 0 8px rgba(242, 153, 74, .25); transition: transform .3s var(--ease);
}
.play svg { width: 24px; height: 24px; margin-left: 3px; }
.review--video:hover .play { transform: scale(1.08); }
.review__meta { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; display: grid; justify-items: start; gap: 4px; }
.review__meta b { font-size: 21px; font-weight: 500; line-height: 1.2; }
.review__meta small { margin-bottom: 10px; font-size: 14px; color: rgba(255, 255, 255, .75); }
.chip--glass { background: rgba(255, 255, 255, .14); color: #fff; }
.review--cert { grid-column: span 6; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 24px; padding: clamp(24px, 2.6vw, 32px); }
.review__cert-text { display: grid; gap: 18px; }
.review__cert-text p { font-size: 16px; color: var(--text-2); }
.review__cert-img img { width: 100%; border-radius: 10px; box-shadow: 0 16px 40px rgba(0, 21, 61, .16); }

/* ---------- 10. кейсы ---------- */
.cases__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.case { display: flex; flex-direction: column; gap: 16px; padding: 28px; border-radius: var(--r); background: var(--surface); }
.case__head b { display: block; margin-bottom: 6px; font-size: 22px; font-weight: 500; line-height: 1.2; color: var(--ink); }
.case__head small { display: block; font-size: 13.5px; color: var(--muted); }
.case__quote { font-size: 16px; line-height: 1.5; color: var(--text); }
.case__quote span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.case__box { padding: 16px 18px; border-radius: 16px; font-size: 15px; line-height: 1.45; }
.case__box--problem { background: var(--bg); color: var(--text-2); }
.case__box--result { border: 1px solid rgba(98, 197, 132, .45); background: rgba(98, 197, 132, .06); color: var(--text); }
.case__box h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 15px; font-weight: 600; letter-spacing: 0; color: var(--ink); }
.case__box h3 svg { width: 18px; height: 18px; }
.case__box--problem h3 svg { color: var(--red); }
.case__box--result h3 svg { color: #3fa566; }
.case__box li { position: relative; padding-left: 16px; }
.case__box li + li { margin-top: 6px; }
.case__box li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .5; }
.case__box--result li { font-weight: 500; }
.case:focus { outline: none; }
.cases__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px; margin-top: 24px; }
.cases__link { display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 500; color: var(--ink); transition: color .2s; }
.cases__link svg { width: 16px; height: 16px; color: var(--orange); transition: transform .25s var(--ease); }
.cases__link:hover { color: var(--orange); }
.cases__link:hover svg { transform: translate(2px, -2px); }
.cases__note { margin-top: 20px; }

/* ---------- 11. калькулятор ---------- */
.roi { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 20px; }
.roi__form { display: grid; align-content: start; gap: 28px; }
.range { display: grid; gap: 12px; }
.range__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.range__top label { font-size: 15.5px; color: var(--text-2); }
.range__top output { font-size: 20px; font-weight: 500; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.range input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; margin: 8px 0;
  border-radius: 99px; cursor: pointer;
  background: linear-gradient(90deg, var(--orange) 0 var(--p, 50%), #dcdcdc var(--p, 50%) 100%);
}
.range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 2px solid var(--orange); box-shadow: 0 4px 12px rgba(0, 21, 61, .18); transition: transform .2s;
}
.range input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--orange); box-shadow: 0 4px 12px rgba(0, 21, 61, .18); }
.range input[type=range]:active::-webkit-slider-thumb { transform: scale(1.12); }
.section--white .roi__result, .roi__result {
  display: flex; flex-direction: column; gap: 18px; color: #fff;
  background: radial-gradient(80% 80% at 100% 0%, rgba(33, 71, 134, .9) 0%, rgba(33, 71, 134, 0) 60%), var(--navy);
}
.roi__label { font-size: 16px; color: rgba(255, 255, 255, .72); }
.roi__sum { font-size: clamp(48px, 5.4vw, 80px); font-weight: 500; line-height: 1; letter-spacing: -.035em; color: var(--orange); font-variant-numeric: tabular-nums; }
.roi__rows { display: grid; gap: 12px; margin: 6px 0 0; }
.roi__rows div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: 15px; }
.roi__rows dt { color: rgba(255, 255, 255, .7); }
.roi__rows dd { margin: 0; font-weight: 500; white-space: nowrap; }
.roi__note { font-size: 14.5px; color: rgba(255, 255, 255, .6); }
.roi__compare {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 18px;
  border-radius: 16px; background: rgba(242, 153, 74, .12); border: 1px solid rgba(242, 153, 74, .35);
  font-size: 15px; color: rgba(255, 255, 255, .8);
}
.roi__compare b { font-size: 22px; font-weight: 500; color: #fff; white-space: nowrap; }
.roi__result .btn { margin-top: auto; }

/* ---------- 12. билеты ---------- */
.tickets__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px;
  max-width: 980px; margin: 0 auto 44px; padding: 14px 24px; border-radius: 22px; background: var(--surface);
}
.tickets__bar-text { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-2); }
.tickets__bar-text svg { width: 20px; height: 20px; color: var(--orange); }
.timer { display: flex; gap: 6px; }
.timer > span { display: grid; justify-items: center; min-width: 64px; padding: 8px 8px 7px; border-radius: 14px; background: var(--bg); }
.timer b { font-size: 24px; font-weight: 500; line-height: 1.1; color: var(--ink); font-variant-numeric: tabular-nums; }
.timer small { font-size: 11px; color: var(--muted); }
.tickets__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.tickets__grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1000px; margin: 0 auto; }
.ticket { position: relative; display: flex; flex-direction: column; margin-top: 12px; padding: 38px 32px 32px; border-radius: var(--r); background: var(--surface); }
.ticket::before { content: ""; position: absolute; top: -12px; left: 32px; width: 110px; height: 12px; border-radius: 10px 10px 0 0; background: var(--tab, var(--blue)); }
.ticket--featured { background: var(--navy); color: #fff; box-shadow: 0 30px 70px rgba(0, 21, 61, .28); }
.ticket--featured .ticket__name { color: #fff; }
.ticket--featured .ticket__desc, .ticket--featured .ticket__note { color: rgba(255, 255, 255, .66); }
.ticket__badge { position: absolute; top: 20px; right: 20px; padding: 7px 14px; border-radius: var(--r-pill); background: var(--orange); font-size: 12.5px; font-weight: 500; color: #fff; }
.ticket__name { margin-bottom: 8px; font-size: 26px; font-weight: 500; }
.ticket__desc { min-height: 50px; margin-bottom: 26px; font-size: 15.5px; line-height: 1.45; color: var(--text-2); }
.ticket__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.ticket__price b { font-size: clamp(44px, 4vw, 58px); font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.ticket__old { font-size: clamp(18px, 1.6vw, 22px); color: var(--muted); text-decoration-thickness: 1px; }
.ticket--featured .ticket__old { color: rgba(255, 255, 255, .5); }
.ticket__note { margin-bottom: 26px; font-size: 13.5px; color: var(--muted); }
.ticket__limit { align-self: flex-start; margin: -14px 0 24px; padding: 6px 12px; border-radius: var(--r-pill); background: rgba(242, 153, 74, .14); font-size: 13px; font-weight: 500; color: #b8600f; }
.ticket--featured .ticket__limit { background: rgba(242, 153, 74, .2); color: #f7b27a; }
.ticket__list { display: grid; gap: 12px; margin-bottom: 32px; font-size: 15.5px; line-height: 1.4; }
.ticket__list li { display: flex; align-items: flex-start; gap: 12px; }
.ticket__list svg { width: 22px; height: 22px; flex: none; padding: 4px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); }
.ticket--featured .ticket__list svg { background: rgba(242, 153, 74, .18); }
.ticket .btn { margin-top: auto; }
.tickets__extras { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 20px; }
.extra { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 28px; border-radius: var(--r); background: var(--surface); }
.extra h3 { font-size: 19px; }
.extra p { font-size: 15px; color: var(--text-2); }
.extra .chip { margin-top: auto; }
.extra .icon-bubble { background: var(--bg); }
.chip--btn { min-height: 40px; padding: 0 16px; background: var(--bg); font-size: 14px; color: var(--ink); transition: background-color .2s, color .2s; }
.chip--btn:hover { background: var(--orange); color: #fff; }

/* ---------- 13. детали ---------- */
.details { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.detail { display: grid; align-content: start; gap: 10px; padding: 26px; border-radius: var(--r); background: var(--bg); }
.detail .icon-bubble { margin-bottom: 8px; background: var(--surface); }
.detail b { font-size: 20px; font-weight: 500; line-height: 1.25; color: var(--ink); }
.detail small { font-size: 14.5px; line-height: 1.45; color: var(--text-2); }
.schedule { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; padding: 22px 26px; border-radius: var(--r); background: var(--bg); }
.schedule__title { font-size: 16px; font-weight: 500; color: var(--ink); }
.schedule__list { display: flex; flex-wrap: wrap; gap: 10px; }
.schedule__list li { display: flex; align-items: center; gap: 10px; padding: 10px 18px 10px 12px; border-radius: var(--r-pill); background: var(--surface); font-size: 15px; }
.schedule__list b { padding: 3px 10px; border-radius: var(--r-pill); background: var(--orange-soft); font-weight: 500; color: #9a4f12; }
.venue-map {
  position: relative; grid-column: 1 / -1; display: grid; place-items: center; min-height: 300px; overflow: hidden;
  border-radius: var(--r); background: linear-gradient(135deg, #0c275e 0%, #04112c 100%); color: #fff; text-align: center;
}
.venue-map__grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.venue-map__grid path { fill: none; stroke: rgba(153, 189, 210, .16); stroke-width: 1; vector-effect: non-scaling-stroke; }
.venue-map__pin {
  position: relative; display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--orange); color: #fff;
  box-shadow: 0 0 0 12px rgba(242, 153, 74, .2), 0 0 0 26px rgba(242, 153, 74, .08);
}
.venue-map__pin svg { width: 28px; height: 28px; }
.venue-map p { position: relative; display: grid; gap: 6px; padding: 0 20px; }
.venue-map b { font-size: 20px; font-weight: 500; }
.venue-map span { font-size: 14.5px; color: rgba(255, 255, 255, .66); }
a.venue-map:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.venue-map .venue-map__link {
  justify-self: center; display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 18px;
  border-radius: var(--r-pill); background: var(--orange); color: #fff; font-size: 15px; font-weight: 500;
  transition: background-color .25s var(--ease);
}
.venue-map__link svg { width: 16px; height: 16px; }
a.venue-map:hover .venue-map__link { background: var(--orange-hover); }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); align-items: start; gap: clamp(32px, 5vw, 80px); }
.faq__aside { position: sticky; top: calc(var(--header-h) + 48px); display: grid; justify-items: start; gap: 18px; }
.faq__aside p { color: var(--text-2); }
.faq__list { display: grid; gap: 10px; }
.qa { border-radius: 22px; background: var(--surface); }
.qa[open] { box-shadow: var(--shadow); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px 20px 26px;
  font-size: 17.5px; font-weight: 500; line-height: 1.35; color: var(--ink); cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__icon {
  display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 50%;
  background: var(--bg); color: var(--ink); transition: transform .3s var(--ease), background-color .25s, color .25s;
}
.qa__icon svg { width: 18px; height: 18px; }
.qa[open] .qa__icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.qa__a { max-width: 760px; padding: 0 26px 24px; font-size: 16px; color: var(--text-2); }

/* ---------- 15. заявка ---------- */
.apply {
  position: relative; overflow: hidden; padding-bottom: 0; color: #fff;
  background:
    radial-gradient(55% 70% at 30% 100%, rgba(33, 71, 134, .9) 0%, rgba(33, 71, 134, 0) 70%),
    linear-gradient(180deg, #0c275e 0%, #04112c 100%);
}
.apply__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 540px); align-items: end; gap: clamp(32px, 5vw, 80px); }
.apply__left { display: flex; flex-direction: column; align-self: stretch; }
.apply__left .h2 { margin: 18px 0 30px; color: #fff; }
.apply__steps { display: grid; gap: 12px; margin-bottom: 32px; }
.apply__steps li { display: flex; align-items: center; gap: 14px; font-size: 17px; line-height: 1.4; color: rgba(255, 255, 255, .86); }
.apply__num {
  display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%;
  border: 1px solid rgba(242, 153, 74, .6); font-size: 15px; font-weight: 500; color: var(--orange);
}
.apply__photo { align-self: center; width: min(480px, 100%); margin-top: auto; }
.apply__photo img { display: block; width: 100%; height: auto; }
.form-card {
  display: grid; gap: 14px; margin-bottom: var(--section); padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r); background: var(--surface); color: var(--text); box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}
.form-card__title { font-size: 26px; }
.form-card__sub { margin-bottom: 4px; font-size: 15px; color: var(--text-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.input--area { min-height: 92px; padding: 16px 22px; border-radius: 22px; line-height: 1.45; resize: vertical; }

/* ---------- подвал ---------- */
.footer { padding: clamp(56px, 6vw, 80px) 0 28px; background: #001e3d; color: rgba(255, 255, 255, .82); font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 32px 40px; }
.footer .brand__name { margin-bottom: 10px; color: #fff; }
.footer__tagline { max-width: 300px; margin-bottom: 22px; color: rgba(255, 255, 255, .6); }
.footer__logo { width: 150px; opacity: .85; }
.footer__title { margin-bottom: 14px; font-size: 13px; color: rgba(255, 255, 255, .45); }
.footer__nav { display: grid; align-content: start; gap: 10px; }
.footer a { transition: color .2s, border-color .2s; }
.footer a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .18); }
.footer__social a:hover { border-color: var(--orange); }
.footer__social svg { width: 20px; height: 20px; }
.footer__contacts p + p { margin-top: 6px; }
.footer__contacts .chip { margin-bottom: 14px; }
.chip--dark { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .16); }
.chip--dark:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer__contacts .footer__legal { margin-top: 14px; font-size: 13px; color: rgba(255, 255, 255, .5); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px; color: rgba(255, 255, 255, .45);
}
.footer__disclaimer { flex-basis: 100%; font-size: 12px; color: rgba(255, 255, 255, .36); }

/* ---------- плавающие элементы ---------- */
.mbar {
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 90;
  display: none; align-items: center; gap: 12px; padding: 8px 8px 8px 18px; border-radius: 22px;
  background: rgba(0, 21, 61, .94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: #fff; box-shadow: 0 16px 40px rgba(0, 21, 61, .35);
  transform: translateY(160%); visibility: hidden;
  transition: transform .45s var(--ease), visibility 0s linear .45s;
}
.mbar.is-visible { transform: none; visibility: visible; transition: transform .45s var(--ease); }
.mbar__text { font-size: 12.5px; line-height: 1.3; color: rgba(255, 255, 255, .7); }
.mbar__text b { display: block; font-size: 15px; font-weight: 500; color: #fff; }
.mbar .btn { min-height: 48px; margin-left: auto; padding: 0 24px; font-size: 15.5px; }
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 80; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: #fff;
  box-shadow: 0 12px 30px rgba(242, 153, 74, .45); transition: transform .3s var(--ease);
}
.fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--orange); animation: fab-pulse 2.6s var(--ease) infinite; }
.fab:hover { transform: scale(1.06); }
.fab svg { width: 26px; height: 26px; }
@keyframes fab-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.65); opacity: 0; } }

/* ---------- окна ---------- */
html.no-scroll, html.no-scroll body { overflow: hidden; }
.modal {
  width: min(540px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; border: 0;
  border-radius: var(--r); background: var(--surface); color: var(--text);
  box-shadow: 0 40px 100px rgba(0, 21, 61, .35); overflow: auto; overscroll-behavior: contain;
}
.modal::backdrop { background: rgba(0, 21, 61, .62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal[open] { animation: modal-in .38s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.985); } }
.modal__box { position: relative; display: grid; gap: 14px; padding: clamp(28px, 4vw, 40px); }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg); color: var(--ink);
  transition: background-color .2s, color .2s;
}
.modal__close:hover { background: var(--ink); color: #fff; }
.modal__close svg { width: 18px; height: 18px; }
.modal__close--light { background: rgba(255, 255, 255, .16); color: #fff; }
.modal__title { margin: 4px 0 0; padding-right: 40px; font-size: clamp(24px, 2.4vw, 30px); }
.modal__sub { margin-bottom: 4px; font-size: 15.5px; color: var(--text-2); }
.modal__sub b { font-weight: 500; color: var(--ink); }
.modal--video { width: min(980px, calc(100% - 24px)); overflow: visible; background: #000; }
.video-frame { aspect-ratio: 16 / 9; }
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; border-radius: var(--r); }
.promo summary { padding-left: 22px; font-size: 14px; color: var(--muted); cursor: pointer; list-style: none; }
.promo summary::-webkit-details-marker { display: none; }
.promo summary:hover { color: var(--orange); }
.promo[open] summary { margin-bottom: 10px; }
.form-status { font-size: 14px; color: var(--red); }
.form-status:empty { display: none; }
form.is-sending [type=submit] { opacity: .7; pointer-events: none; }
.toast {
  position: fixed; left: 50%; bottom: 96px; z-index: 300; padding: 12px 22px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; font-size: 14.5px; opacity: 0; pointer-events: none;
  transform: translate(-50%, 16px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Адаптив
   ========================================================================== */
@media (max-width: 1200px) {
  .results__grid, .tools__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: minmax(0, 1fr); }
  .stats__brand { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
  .stats__brand img { margin-bottom: 0; }
  .stats__brand p { max-width: 520px; }
  .review--text, .review--cert, .review--video { grid-column: span 12; }
  .details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: grid; }
  .site-header__cta { margin-left: auto; }
  .mobile-menu {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: grid; gap: 4px; padding: 10px;
    border-radius: 24px; background: var(--surface); color: var(--ink); box-shadow: var(--shadow-lift);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  }
  .site-header.is-open .mobile-menu { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .mobile-menu a:not(.btn) { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-radius: 16px; font-size: 18px; }
  .mobile-menu a:not(.btn):hover { background: var(--bg); }
  .mobile-menu a svg { width: 18px; height: 18px; color: var(--orange); }
  .mobile-menu .btn { margin-top: 6px; }
}

@media (max-width: 960px) {
  :root { --header-h: 60px; }
  .hero { flex-direction: column; min-height: 0; }
  .hero__media { position: relative; order: -1; width: 100%; height: clamp(440px, 112vw, 660px); }
  .hero__media img {
    object-position: 66% 24%;
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }
  .hero::after, .hero__caption { display: none; }
  .hero__inner { margin-top: -170px; padding-top: 0; padding-bottom: 150px; }
  .section-head--split, .problem__top, .fit, .program, .speaker, .faq, .apply__grid, .roi { grid-template-columns: minmax(0, 1fr); }
  .section-head--split { row-gap: 16px; }
  .fit__head, .program__aside, .faq__aside { position: static; }
  .tickets__grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin: 0 auto; }
  .tickets__extras { grid-template-columns: minmax(0, 1fr); }
  .cases__grid { grid-template-columns: minmax(0, 1fr); max-width: 640px; }
  .speaker__photo { width: 100%; max-width: 560px; }
  .apply { padding-bottom: var(--section); }
  .apply__photo { display: none; }
  .form-card { margin-bottom: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .btn--lg { min-height: 60px; padding: 0 28px; font-size: 17px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__facts li { flex: 1 1 auto; }
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 26px; }
  .stats__item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .logos__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pains { grid-template-columns: minmax(0, 1fr); gap: 26px; padding-bottom: 0; }
  .results__grid, .tools__grid, .details { grid-template-columns: minmax(0, 1fr); }
  .result, .tool { min-height: 0; }
  .result--dark { min-height: 210px; }
  .result__cross { top: -26px; right: -26px; width: 120px; height: 120px; }
  .review--video { grid-column: span 12; min-height: 340px; }
  .review--cert { grid-template-columns: minmax(0, 1fr); }
  .module summary { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "num icon" "title title"; row-gap: 10px; }
  .module__num { grid-area: num; justify-self: start; min-height: 32px; font-size: 14px; }
  .module__icon { grid-area: icon; }
  .module__title { grid-area: title; }
  .module__body { padding: 0 22px 24px 20px; }
  .speaker__stats { grid-template-columns: minmax(0, 1fr); }
  .social-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .ticket { padding: 34px 24px 26px; }
  .tickets__bar { flex-direction: column; }
  .mbar { display: flex; }
  .fab { display: none; }
  .footer { padding-bottom: 104px; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
}

/* Подложка в заголовке не переносится: на самых узких экранах уменьшаем h2,
   чтобы самая длинная фраза («кого слушает рынок») помещалась в строку */
@media (max-width: 359px) {
  .h2 { font-size: 28px; }
}

@media (max-width: 560px) {
  .site-header__cta { display: none; }
  .burger { margin-left: auto; }
  .brand__name { font-size: 13.5px; letter-spacing: .07em; }
  .timer > span { min-width: 56px; }
}
