  /* =========================
    FONTS
  ========================= */

  @font-face {
    font-family: 'a_LCDNova';
    src: url('../fonts/a_LCDNova.ttf?v=3') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Wix';
    src: url('../fonts/WixMadeforDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Wix';
    src: url('../fonts/WixMadeforDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Wix';
    src: url('../fonts/WixMadeforDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  /* =========================
    BASE
  ========================= */

  :root {
    --red: #bd102b;
    --red2: #e11134;
    --dark: #050506;
    --white: #fff;
    --muted: #d6c9cc;
    --max: 1180px;
    --hero-red: #bd102b;
    --hero-red2: #f21d3e;
    --hero-dark: #050506;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: #030303;
    color: #fff;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.35;
    overflow-x: hidden;
    background-color: #020202 !important;
    background-image: url('../img/bg-full.png') !important;
    background-repeat: repeat-y !important;
    background-position: top center !important;
    background-size: 100% auto !important;
  }
/* MOBILE GLOBAL BACKGROUND */

@media (max-width: 768px) {
    body {
        background-image: url('../img/mob-fullbg.png') !important;
    }
}
  a {
    color: inherit;
    text-decoration: none;
  }

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

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

  .narrow {
    max-width: 820px;
  }

  .hero-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
  }

  /* =========================
    COMMON BACKGROUND
  ========================= */

  .section-lines {
    position: relative;

    background:
      radial-gradient(circle at 18% 20%, rgba(210, 17, 52, .4), transparent 34%),
      radial-gradient(circle at 80% 70%, rgba(190, 16, 43, .35), transparent 34%),
      #050506;
  }

  .section-lines::before {
    content: "";
    position: absolute;
    inset: -15%;
    background:
      repeating-linear-gradient(
        165deg,
        transparent 0 43px,
        rgba(255, 255, 255, .04) 44px 46px,
        transparent 47px 90px
      ),
      linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 22, 55, .55) 31%,
        rgba(255, 255, 255, .25) 31.5%,
        transparent 33%
      );
    opacity: .65;
    pointer-events: none;
    transform: translate3d(0, var(--parallax, 0px), 0);
    transition: transform .08s linear;
    will-change: transform;
  }

  .section-lines > * {
    position: relative;
    z-index: 1;
  }

  /* =========================
    HEADER
  ========================= */

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 27px 0 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: padding .25s ease, background .25s ease, backdrop-filter .25s ease;
  }

  .site-header.is-scrolled {
    position: fixed;
    padding: 12px 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
  }

  .header-inner {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 26px;
    max-width: 1120px;
    padding: 0;
  }

  .header-logo {
    display: flex;
    align-items: center;
    width: 142px;
    flex: 0 0 142px;
    text-decoration: none;
  }

  .header-logo img {
    width: 142px;
    height: auto;
    object-fit: contain;
  }

  .header-labomed {
    display: flex;
    align-items: center;
    width: 38px;
    flex: 0 0 38px;
    text-decoration: none;
    margin-right: auto;
  }

  .header-labomed img {
    width: 31px;
    height: auto;
    object-fit: contain;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    font-size: 12px;
    line-height: 1;
    color: #eee;
  }

  .nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Wix', Arial, sans-serif;
    font-weight: 400;
    opacity: .95;
    white-space: nowrap;
  }

  .header-join {
    min-width: 127px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #bb102b;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 0 19px rgba(225, 17, 52, .72);
  }

  .burger {
    display: none;
    background: none;
    border: 0;
  }

  .burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    margin: 6px;
  }

  /* =========================
    BUTTONS
  ========================= */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 44px;
    border-radius: 18px;
    border: 0;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(90deg, var(--red), #810818);
    box-shadow: 0 0 26px rgba(225, 17, 52, .55);
    font-family: 'Wix', Arial, sans-serif;
    font-size: 18px;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  }

  .btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 0 38px rgba(225, 17, 52, .82);
  }

  .btn-dark {
    background: #020202;
    box-shadow: 0 0 28px rgba(225, 17, 52, .75);
  }

  .btn-red {
    background: linear-gradient(90deg, #620915, var(--red2));
    color: #080808;
  }

  .btn-small {
    min-height: 42px;
    border-radius: 10px;
    padding: 0 22px;
    font-size: 14px;
  }

  .btn-wide {
    width: 100%;
  }

  /* =========================
    TYPOGRAPHY
  ========================= */

  .racing-title {
    font-family: 'a_LCDNova', 'Wix', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .015em;
    line-height: .96;
    font-weight: 400;
  }

  .track h2,
  .track h3,
  .speakers h2,
  .program h2,
  .tickets h2,
  .faq h2,
  .partners h2,
  .contacts h2,
  .calc h2,
  .videos h2,
  .lead-grid h2,
  .result h2,
  .ticket h3,
  .time-card b,
  .webinar-banner {
    font-family: 'a_LCDNova', 'Wix', Arial, sans-serif;
    font-weight: 400;
    text-align: left;
  }

  /* =========================
    HERO V2
  ========================= */

  .hero-v2 {
    position: relative;
    min-height: 690px;
    height: 690px;
    padding: 0;

    background: #090506;
    isolation: isolate;
  }

  .hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    background:
      radial-gradient(circle at 20% 55%, rgba(224, 21, 50, .92) 0%, rgba(187, 16, 43, .62) 28%, rgba(55, 5, 12, .2) 55%, rgba(0, 0, 0, 0) 72%),
      linear-gradient(90deg, #bd102b 0%, #80101e 33%, #12080b 67%, #050505 100%);
    opacity: 1;
  }

  .hero-v2::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -18%;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(12deg, transparent 14.7%, rgba(255, 50, 65, .35) 15.05%, rgba(255, 255, 255, .30) 15.16%, rgba(255, 19, 43, .75) 15.32%, transparent 15.70%),
      linear-gradient(8deg, transparent 29.0%, rgba(255, 37, 55, .42) 29.16%, rgba(255, 255, 255, .32) 29.27%, rgba(255, 17, 42, .82) 29.42%, transparent 29.78%),
      linear-gradient(4deg, transparent 41.1%, rgba(255, 30, 50, .45) 41.28%, rgba(255, 255, 255, .30) 41.38%, rgba(255, 15, 41, .75) 41.55%, transparent 41.88%),
      linear-gradient(0deg, transparent 52.0%, rgba(255, 34, 52, .36) 52.14%, rgba(255, 255, 255, .34) 52.22%, rgba(255, 10, 40, .78) 52.38%, transparent 52.67%),
      linear-gradient(-7deg, transparent 64.0%, rgba(255, 27, 48, .32) 64.16%, rgba(255, 255, 255, .22) 64.28%, rgba(255, 14, 38, .68) 64.45%, transparent 64.82%),
      linear-gradient(-14deg, transparent 76.0%, rgba(255, 26, 47, .3) 76.17%, rgba(255, 255, 255, .18) 76.28%, rgba(255, 17, 40, .58) 76.45%, transparent 76.8%);
    mix-blend-mode: screen;
    opacity: .98;
  }

  .hero-v2__inner {
    position: relative;
    z-index: 2;
    height: 690px;
    padding-top: 122px;
  }

  .hero-v2__content {
    position: relative;
    z-index: 5;
    width: 560px;
    margin-left: 55px;
  }

  .hero-v2__logo {
    width: 338px;
    height: auto;
    margin: 0 0 15px 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .1));
  }

  .hero-v2__date {
    display: inline-flex;
    align-items: center;
    height: 46px;
    border-radius: 999px;
    background: #030303;
    
    margin: 0 0 17px 0;
    font-family: 'a_LCDNova', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .015em;
    color: #bd102b;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .32);
  }

  .hero-v2__date span {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    color: #bd102b;
    background: rgba(189, 16, 43, .16);
  }

  .hero-v2__date span:first-child {
    background: #070608;
    border-radius: 999px 0 0 999px;
  }

  .hero-v2__date span:nth-child(2) {
    background: #bd102b;
    color: #050505;
    border-radius: 0 999px 999px 0;
    margin-left: -10px;
    padding-left: 31px;
    padding-right: 28px;
    font-family: 'Wix', Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0;
  }

  .hero-v2__date em {
    font-style: normal;
    color: #bd102b;
    font-family: 'Wix', Arial, sans-serif;
    font-weight: 400;
    font-size: 25px;
    padding: 0 21px 0 18px;
    letter-spacing: .01em;
  }

  .hero-v2__title {
    font-family: 'a_LCDNova' !important;
    font-weight: 400 !important;
    font-size: 72px;
    line-height: .92;
    letter-spacing: .02em;
    color: #fff;
  }

  .hero-v2__text {
    font-family: 'Wix', Arial, sans-serif;
    font-size: 21px;
    line-height: 1.14;
    margin: 0 0 41px;
    color: #fff;
    letter-spacing: .005em;
    max-width: 510px;
  }

  .hero-v2__actions {
    width: 910px;
    height: 64px;
    display: grid;
    grid-template-columns: 228px 1fr;
    position: relative;
    z-index: 8;
  }

  .hero-v2__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 22px;
    font-family: 'Wix', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    transition: .2s ease;
  }

  .hero-v2__btn:hover {
    transform: translateY(-2px);
  }

  .hero-v2__btn--black {
    background: #050505;
    color: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 0 31px rgba(225, 17, 52, .76);
  }

  .hero-v2__btn--red {
    background: linear-gradient(90deg, #38060c 0%, #8d101e 31%, #bd102b 67%, #ef1d42 100%);
    color: #050505;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .hero-v2__microscope {
    position: absolute;
    z-index: 4;
    right: -183px;
    top: 42px;
    width: 770px;
    height: auto;
    max-width: none;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .36));
    animation: microFloat 5.5s ease-in-out infinite;
  }

  .hero-v2__day-img {
    position: absolute;
    z-index: 6;
    right: 244px;
    bottom: 175px;
    width: 278px;
    height: auto;
    max-width: none;
    filter: drop-shadow(0 0 16px rgba(189, 16, 43, .16));
  }



  /* =========================
    MARQUEE
  ========================= */

  .marquee {
    height: 70px;
    background: #bd102b;
    color: #050505;

    display: flex;
    align-items: center;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Wix', Arial, sans-serif;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 28px rgba(225, 17, 52, .35);
  }

  .marquee div {
    display: flex;
    min-width: max-content;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    will-change: transform;
  }

  .marquee:hover div {
    animation-play-state: paused;
  }

  .marquee span {
    font-size: 28px;
  }

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

  /* =========================
    QUESTION
  ========================= */

  .question {
    padding: 105px 0;
  }

  .question-grid {
    display: grid;
    grid-template-columns: 1fr 430px 1fr;
    gap: 50px;
    align-items: center;
  }

  .question-box {
    background: linear-gradient(135deg, rgba(195, 17, 45, .85), rgba(70, 5, 16, .85));
    border-radius: 30px;
    padding: 68px 45px;
    text-align: center;
    box-shadow: 0 0 45px rgba(225, 17, 52, .4);
  }

  .question-box h2 {
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 45px;
  }

  .choice-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
  }

  .choice-row .btn {
    min-width: 130px;
    padding: 0 25px;
  }

  .question-box p {
    color: #db9aa4;
    margin: 0;
  }

  .answer-card {
    opacity: .3;
    transform: scale(.94);
    transition: .25s;
    background: #bd102b;
    border-radius: 18px;
    padding: 32px;
    font-size: 16px;
  }

  .answer-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 35px rgba(225, 17, 52, .45);
  }

  .answer-card ul {
    padding-left: 20px;
    margin: 0;
  }

  .answer-card li {
    margin: 0 0 12px;
  }

  .webinar-banner {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
    background: linear-gradient(90deg, #bd102b, #4e060e);
    border-radius: 16px;
    padding: 25px 28px;
    font-size: 30px;
    text-transform: uppercase;
  }

  .webinar-banner span {
    font-size: 52px;
  }

  /* =========================
    TRACK
  ========================= */

  .track {
    padding: 120px 0;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 80px;
    align-items: center;
  }

  .track h2 {
    font-size: 62px;
    margin: 0 0 45px;
  }

  .plain-list {
    list-style: none;
    margin: 0 0 80px;
    padding: 0;
  }

  .plain-list li {
    margin: 0 0 26px;
    font-size: 23px;
  }

  .track h3 {
    font-size: 46px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 34px;
  }

  .red-text {
    color: #e01033;
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
  }

  .stand-img {
    height: 780px;
    object-fit: contain;
    margin: auto;
  }

  /* =========================
    FEATURES
  ========================= */

  .features {
    padding: 80px 0 140px;
  }

  .features-inner {
    max-width: 720px;
  }

  .feature {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 36px;
  }

  .feature img {
    width: 62px;
    filter: brightness(1.8);
  }

  .feature span {
    font-size: 24px;
  }

  /* =========================
    LEAD FORM
  ========================= */

  .lead {
    padding: 110px 0;
  }

  .lead-grid h2 {
    font-size: 66px;
    margin: 0 0 42px;
  }

  .lead-form {
    background: linear-gradient(135deg, rgba(3, 3, 3, .92), rgba(185, 14, 42, .72));
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 0 45px rgba(225, 17, 52, .45);
    max-width: 980px;
  }

  .form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  input {
    width: 100%;
    height: 58px;
    border: 1px solid #b71932;
    border-radius: 18px;
    background: #080808;
    color: #fff;
    padding: 0 20px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
  }

  input::placeholder {
    color: #b71932;
  }

  input:focus {
    outline: none;
    border-color: #ff2445;
    box-shadow: 0 0 18px rgba(225, 17, 52, .45);
  }

  .agree {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #b56b75;
    font-size: 13px;
    margin: 24px 0;
  }

  .agree input {
    width: 20px;
    height: 20px;
    accent-color: #bd102b;
  }

  .lead-form p {
    color: #8d404b;
    text-align: center;
    margin: 18px 0 0;
  }

  /* =========================
    SPEAKERS
  ========================= */

  .speakers {
    padding: 120px 0;
  }

  .speakers h2,
  .program h2,
  .tickets h2,
  .faq h2,
  .partners h2,
  .contacts h2,
  .calc h2,
  .videos h2 {
    font-size: 58px;
    margin: 0 0 52px;
  }

  .speaker-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .speaker {
    position: relative;
    min-height: 480px;
    background: linear-gradient(180deg, #bd102b, #650917);
    border-radius: 18px;
    padding: 95px 22px 24px;
    
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .speaker:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 42px rgba(225, 17, 52, .4);
  }

  .speaker::before {
    content: "работает на микроскопе";
    position: absolute;
    right: -35px;
    top: 20px;
    width: 110px;
    height: 110px;
    border-radius: 50%;

    font-size: 10px;
    text-align: center;
    padding-top: 40px;
    color: #090909;
    text-transform: uppercase;
  }

  .speaker img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    object-fit: cover;
  }

  .speaker h3 {
    text-transform: uppercase;
    font-size: 22px;
    margin: 45px 0 20px;
  }

  .speaker p {
    font-size: 16px;
    min-height: 120px;
  }

  .speaker b {
    display: block;
    font-size: 16px;
    margin-bottom: 22px;
  }

  .speaker-more {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    height: 48px;
    border-radius: 15px;
    background: #050505;
    color: #b91631;
    border: 0;
    font-weight: 700;
    cursor: pointer;
  }

  .video-link {
    margin-top: 55px;
    display: flex;
    max-width: 430px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #bd102b, #070707);
    border-radius: 16px;
    padding: 23px 28px;
    font-weight: 700;
  }

  .video-link span {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #bd102b;
    box-shadow: 0 0 35px rgba(225, 17, 52, .8);
  }

  /* =========================
    PROGRAM
  ========================= */

  .program {
    padding: 120px 0;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .time-card {
    position: relative;
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 35px;
    min-height: 105px;
    border-radius: 20px;
    background: #bd102b;
    padding: 28px 34px;

    transition: transform .25s ease, box-shadow .25s ease;
  }

  .time-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 42px rgba(225, 17, 52, .4);
  }

  .time-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 50%, rgba(255, 255, 255, .14));
    opacity: .7;
  }

  .time-card > * {
    position: relative;
    z-index: 1;
  }

  .time-card b {
    font-size: 32px;
  }

  .time-card span {
    font-size: 24px;
  }

  .time-card small {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #220006;
  }

  .time-card img {
    position: absolute;
    right: 32px;
    bottom: 14px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
  }

  .time-card.big span {
    padding-right: 120px;
  }

  .mini-faces {
    position: absolute;
    right: 28px;
    bottom: 16px;
    display: flex;
    gap: 18px;
  }

  .mini-faces img {
    position: static;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
  }

  .center-actions {
    display: flex;
    gap: 28px;
    margin-top: 70px;
    justify-content: center;
  }

  /* =========================
    RESULT
  ========================= */

  .result {
    padding: 110px 0;
  }

  .result-grid {
    position: relative;
    min-height: 620px;
  }

  .result h2 {
    font-size: 48px;
    background: #bd102b;
    color: #070707;
    text-align: center;
    padding: 28px;
    margin: 0 -80px 60px;
  }

  .result img {
    width: 540px;
    transform: rotate(-15deg);
    margin: auto;
  }

  .note {
    position: absolute;
    background: #bd102b;
    border-radius: 16px;
    padding: 24px;
    max-width: 330px;
    font-size: 21px;
  }

  .n1 {
    left: 16%;
    bottom: 170px;
  }

  .n2 {
    right: 18%;
    top: 200px;
  }

  /* =========================
    CALCULATOR
  ========================= */

  .calc {
    padding: 120px 0;
  }

  .calc-box {
    background: rgba(0, 0, 0, .38);
    padding: 35px 0;
  }

  .calc label {
    display: block;
    margin-bottom: 32px;
    font-size: 19px;
  }

  .calc label b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 48px;
    background: #78101d;
    border-radius: 18px;
    margin-left: 20px;
  }

  .calc input[type="range"] {
    height: 8px;
    border: 0;
    padding: 0;
    accent-color: #bd102b;
  }

  .payback {
    margin-top: 40px;
  }

  .payback strong {
    display: flex;
    margin-top: 15px;
    min-height: 78px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #bd102b;
    box-shadow: 0 0 35px rgba(225, 17, 52, .7);
    font-size: 28px;
  }

  /* =========================
    VIDEOS
  ========================= */

  .videos {
    padding: 80px 0;
  }

  .videos p {
    font-size: 24px;
    color: #ddd;
  }

  .video-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 30px;
  }

  .video-cards a {
    background: #bd102b;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    font-weight: 800;
  }

  /* =========================
    TICKETS
  ========================= */

  .tickets {
    padding: 110px 0;
  }

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

  .ticket {
    background: linear-gradient(160deg, #090909, #bd102b);
    border-radius: 26px;
    padding: 42px 34px;
    min-height: 420px;
    box-shadow: 0 0 35px rgba(225, 17, 52, .25);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .ticket:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 42px rgba(225, 17, 52, .4);
  }

  .ticket.featured {
    transform: translateY(-18px);
    box-shadow: 0 0 50px rgba(225, 17, 52, .55);
  }

  .ticket.featured:hover {
    transform: translateY(-25px);
  }

  .ticket h3 {
    font-size: 42px;
    text-transform: uppercase;
    margin: 0 0 28px;
  }

  .ticket b {
    font-size: 34px;
    color: #e11134;
    margin-bottom: 36px;
  }

  .ticket p {
    flex: 1;
  }

  .ticket .btn {
    min-height: 54px;
  }

  /* =========================
    FAQ
  ========================= */

  .faq {
    padding: 90px 0;
  }

  .faq-item {
    background: #bd102b;
    border-radius: 12px;
    margin-bottom: 10px;
    
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .faq-item button {
    width: 100%;
    text-align: left;
    background: transparent;
    color: #fff;
    border: 0;
    padding: 18px 50px 18px 22px;
    font-family: inherit;
    font-size: 18px;
    cursor: pointer;
    position: relative;
  }

  .faq-item button::after {
    content: "+";
    position: absolute;
    right: 22px;
  }

  .faq-item.active button::after {
    content: "−";
  }

  .faq-item div {
    display: none;
    padding: 0 22px 20px;
    color: #ffdfe4;
  }

  .faq-item.active div {
    display: block;
  }

  /* =========================
    PARTNERS
  ========================= */

  .partners {
    padding: 80px 0;
    text-align: center;
  }

  .partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
  }

  .partner-logos img {
    height: 42px;
    width: auto;
  }

  /* =========================
    CONTACTS
  ========================= */

  .contacts {
    padding: 90px 0;
  }

  .contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
  }

  .contacts p {
    font-size: 20px;
  }

  .hotel-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .hotel-gallery img {
    height: 135px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #bd102b;
  }

  /* =========================
    FOOTER
  ========================= */

  .footer {
    background: #050505;
    padding: 45px 0;
    color: #c9c9c9;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding-top: 28px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .logo img {
    height: 34px;
    width: auto;
  }

  .social {
    display: flex;
    gap: 12px;
  }

  .social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #bd102b;
    font-size: 12px;
  }

  /* =========================
    MODALS
  ========================= */

  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .modal.active {
    display: flex;
  }

  .modal-box {
    position: relative;
    background: #bd102b;
    border-radius: 18px;
    width: min(620px, 100%);
    max-height: 86vh;
    overflow: auto;
    padding: 42px;
    color: #fff;
    box-shadow: 0 0 50px rgba(225, 17, 52, .55);
  }

  .modal-box h3 {
    font-family: 'a_LCDNova', 'Wix', Arial, sans-serif;
    font-size: 38px;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-weight: 400;
  }

  .modal-box p {
    font-size: 18px;
  }

  .modal-box img {
    max-height: 300px;
    margin: 25px auto 0;
  }

  .modal-close {
    position: absolute;
    right: 18px;
    top: 15px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
  }

  .success {
    text-align: center;
  }

  .telegram-round {
    display: grid;
    place-items: center;
    margin: 24px auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: #bd102b;
    font-size: 36px;
  }

  /* =========================
    MOTION
  ========================= */

  .reveal {
    opacity: 0;
    transform: translateY(46px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
  }

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

  .reveal-left {
    opacity: 0;
    transform: translateX(-58px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(58px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
  }

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

  .stagger > * {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
    transition-delay: calc(var(--i, 0) * 80ms);
  }

  .stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes heroIn {
    from {
      opacity: 0;
      transform: translateY(34px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

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

  @keyframes pulseRed {
    0%,
    100% {
      filter: drop-shadow(0 0 0 rgba(225, 17, 52, 0));
    }

    50% {
      filter: drop-shadow(0 0 18px rgba(225, 17, 52, .75));
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .stagger > * {
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* =========================
    RESPONSIVE
  ========================= */

  @media (max-width: 1200px) {
    .hero-container {
      width: min(100% - 32px, 1040px);
    }

    .hero-v2__content {
      margin-left: 20px;
    }

    .hero-v2__microscope {
      right: -260px;
    }

    .hero-v2__day-img {
      right: 160px;
    }

    .hero-v2__actions {
      width: 560px;
    }

    .hero-v2__title {
      font-size: 50px;
    }
  }

  @media (max-width: 1024px) {
    .nav {
      display: none;
    }

    .burger {
      display: block;
    }

    .question-grid,
    .split,
    .contacts-grid {
      grid-template-columns: 1fr;
    }

    .answer-card {
      opacity: 1;
    }

    .webinar-banner {
      grid-column: auto;
    }

    .form-row,
    .speaker-track,
    .ticket-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .stand-img {
      height: 520px;
    }

    .video-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 900px) {
    .site-header {
      padding-top: 18px;
    }

    .nav {
      display: none;
    }

    .header-inner {
      height: auto;
    }

    .header-logo {
      width: 125px;
      flex-basis: 125px;
    }

    .header-logo img {
      width: 125px;
    }

    .header-labomed {
      margin-right: auto;
    }

    .header-join {
      height: 34px;
    }

    .hero-v2 {
      height: auto;
      min-height: 0;
    }

    .hero-v2__inner {
      height: auto;
      padding: 96px 0 45px;
    }

    .hero-v2__content {
      width: auto;
      margin: 0;
      max-width: 620px;
    }

    .hero-v2__logo {
      width: 300px;
    }

    .hero-v2__date {
      font-size: 24px;
      height: 42px;
    }

    .hero-v2__date span:nth-child(2) {
      font-size: 22px;
    }

    .hero-v2__date em {
      font-size: 20px;
    }

    .hero-v2__title {
      font-size: 44px;
    }

    .hero-v2__microscope {
      position: relative;
      right: auto;
      top: auto;
      width: 115%;
      margin: -20px 0 -25px 8%;
    }

    .hero-v2__day-img {
      position: relative;
      right: auto;
      bottom: auto;
      width: 220px;
      margin: 0 0 22px auto;
    }

    .hero-v2__actions {
      width: 100%;
      max-width: 610px;
    }
  }

  @media (max-width: 640px) {
    body {
      font-size: 16px;
    }

    .container {
      width: min(100% - 28px, var(--max));
    }

    .site-header {
      padding: 14px 0;
    }

    .logo img {
      height: 25px;
    }

    .marquee span {
      font-size: 20px;
    }

    .question {
      padding: 60px 0;
    }

    .question-grid {
      gap: 20px;
    }

    .question-box {
      padding: 40px 24px;
    }

    .choice-row {
      gap: 12px;
    }

    .answer-card {
      font-size: 14px;
    }

    .track,
    .features,
    .lead,
    .speakers,
    .program,
    .result,
    .calc,
    .tickets,
    .faq,
    .contacts {
      padding: 65px 0;
    }

    .track h2,
    .speakers h2,
    .program h2,
    .tickets h2,
    .faq h2,
    .partners h2,
    .contacts h2,
    .calc h2,
    .videos h2,
    .lead-grid h2 {
      font-size: 38px;
    }

    .track h3 {
      font-size: 32px;
    }

    .plain-list li,
    .feature span,
    .time-card span {
      font-size: 18px;
    }

    .feature {
      grid-template-columns: 50px 1fr;
    }

    .feature img {
      width: 44px;
    }

    .form-row,
    .speaker-track,
    .ticket-grid,
    .video-cards {
      grid-template-columns: 1fr;
    }

    .lead-form {
      padding: 24px;
    }

    .speaker {
      min-height: 430px;
    }

    .time-card {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 24px;
    }

    .time-card b {
      font-size: 28px;
    }

    .time-card.big span {
      padding-right: 0;
    }

    .time-card img,
    .mini-faces {
      position: static;
      margin-top: 16px;
    }

    .result h2 {
      font-size: 28px;
      margin: 0 0 30px;
      padding: 20px;
    }

    .result-grid {
      min-height: auto;
    }

    .result img {
      width: 100%;
      transform: rotate(-8deg);
    }

    .note {
      position: static;
      margin: 16px 0;
    }

    .ticket.featured {
      transform: none;
    }

    .footer-inner {
      flex-direction: column;
    }

    .partner-logos {
      gap: 30px;
      flex-wrap: wrap;
    }

    .hotel-gallery {
      grid-template-columns: 1fr;
    }

    .btn {
      width: 100%;
      padding: 0 25px;
    }
  }

  @media (max-width: 560px) {
    .hero-container {
      width: min(100% - 24px, 1120px);
    }

    .header-labomed {
      display: none;
    }

    .header-join {
      font-size: 11px;
      min-width: 116px;
    }

    .hero-v2__inner {
      padding-top: 90px;
    }

    .hero-v2__logo {
      width: 245px;
    }

    .hero-v2__date {
      display: flex;
      width: 100%;
      font-size: 18px;
      height: 38px;
    }

    .hero-v2__date span {
      padding: 0 14px;
    }

    .hero-v2__date span:nth-child(2) {
      font-size: 18px;
      padding-left: 20px;
      padding-right: 18px;
    }

    .hero-v2__date em {
      font-size: 16px;
      padding: 0 12px;
    }

    .hero-v2__title {
      font-size: 33px;
      line-height: 1.02;
      margin-bottom: 24px;
    }

    .hero-v2__text {
      font-size: 17px;
      margin-bottom: 25px;
    }

    .hero-v2__actions {
      height: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .hero-v2__btn {
      min-height: 56px;
      border-radius: 18px;
    }

    .hero-v2__microscope {
      width: 130%;
      margin-left: -2%;
    }

    .hero-v2__day-img {
      width: 190px;
      margin-top: -12px;
    }
  }
  /* =========================
    HERO SCREEN 01 PIXEL PATCH
  ========================= */

  @font-face {
    font-family: 'a_LCDNova';
    src: url('/dental-business/fonts/a_LCDNova.woff2') format('woff2'),
        url('/dental-business/fonts/a_LCDNova.woff') format('woff'),
        url('/dental-business/fonts/a_LCDNova.ttf?v=5') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  /* контейнер как в макете */
  .hero-container {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }

  /* HEADER */
  .site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 38px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .header-inner {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .header-logo {
    width: 156px;
    flex: 0 0 156px;
  }

  .header-logo img {
    width: 156px !important;
    height: auto !important;
  }

  .header-labomed {
    width: 38px;
    flex: 0 0 38px;
    margin-right: auto;
  }

  .header-labomed img {
    width: 34px !important;
    height: auto !important;
  }

  .nav {
    display: flex !important;
    align-items: center;
    gap: 28px !important;
    font-size: 14px !important;
    line-height: 1;
  }

  .nav a {
    font-family: 'Wix', Arial, sans-serif !important;
    color: #fff !important;
    opacity: .92;
    font-weight: 400;
  }

  .header-join {
    width: 140px;
    height: 34px;
    border-radius: 13px;
    background: #bd102b;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 22px rgba(225, 17, 52, .75);
  }

  /* HERO */
  .hero-v2 {
    height: 720px !important;
    min-height: 720px !important;
    padding: 0 !important;
  
    position: relative;
    background:
      radial-gradient(circle at 18% 56%, rgba(230, 20, 50, .95) 0%, rgba(165, 12, 32, .62) 31%, rgba(20, 5, 8, .25) 58%, transparent 72%),
      linear-gradient(90deg, #bd102b 0%, #7b101c 31%, #15080b 62%, #050505 100%) !important;
    isolation: isolate;
  }

  .hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(13deg, transparent 13%, rgba(255, 48, 66, .35) 13.2%, rgba(255,255,255,.35) 13.35%, rgba(255, 20, 45, .8) 13.55%, transparent 13.95%),
      linear-gradient(8deg, transparent 28%, rgba(255, 48, 66, .36) 28.2%, rgba(255,255,255,.34) 28.35%, rgba(255, 20, 45, .82) 28.55%, transparent 28.95%),
      linear-gradient(3deg, transparent 42%, rgba(255, 48, 66, .4) 42.2%, rgba(255,255,255,.34) 42.35%, rgba(255, 20, 45, .86) 42.55%, transparent 42.95%),
      linear-gradient(-2deg, transparent 55%, rgba(255, 48, 66, .32) 55.2%, rgba(255,255,255,.25) 55.35%, rgba(255, 20, 45, .7) 55.55%, transparent 55.95%),
      linear-gradient(-8deg, transparent 68%, rgba(255, 48, 66, .28) 68.2%, rgba(255,255,255,.2) 68.35%, rgba(255, 20, 45, .58) 68.55%, transparent 68.95%),
      linear-gradient(-14deg, transparent 80%, rgba(255, 48, 66, .22) 80.2%, rgba(255,255,255,.16) 80.35%, rgba(255, 20, 45, .45) 80.55%, transparent 80.95%);
    mix-blend-mode: screen;
    opacity: .95;
    pointer-events: none;
  }

  .hero-v2__inner {
    height: 720px !important;
    position: relative;
    z-index: 2;
    padding-top: 165px;
  }

  .hero-v2__content {
    width: 650px;
    margin-left: 58px;
    position: relative;
    z-index: 6;
  }

  .hero-v2__logo {
    width: 382px;
    height: auto;
    margin: 0 0 23px;
  }

  /* дата одной капсулой как в макете */
  .hero-v2__date {
    height: 47px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #030303;
    margin: 0 0 14px;
    
    font-family: 'a_LCDNova', Arial, sans-serif !important;
    font-size: 28px;
    line-height: 1;
    color: #bd102b;
    box-shadow: 0 5px 16px rgba(0,0,0,.32);
  }

  .hero-v2__date span,
  .hero-v2__date em {
    height: 47px;
    display: flex;
    align-items: center;
  }

  .hero-v2__date span:first-child {
    padding: 0 25px 0 27px;
    color: #bd102b;
    background: #050505;
  }

  .hero-v2__date span:nth-child(2) {
    padding: 0 31px;
    margin-left: -7px;
    border-radius: 999px;
    background: #bd102b;
    color: #050505;
    font-family: 'Wix', Arial, sans-serif !important;
    font-weight: 700;
    font-size: 27px;
  }

  .hero-v2__date em {
    padding: 0 27px 0 18px;
    color: #bd102b;
    font-style: normal;
    font-family: 'a_LCDNova', Arial, sans-serif !important;
    font-size: 28px;
  }

  /* главный заголовок */
  .hero-v2__title {
    font-family: 'a_LCDNova', Arial, sans-serif !important;
    font-weight: 400 !important;
    color: #fff;
    text-transform: uppercase;
    font-size: 58px;
    line-height: .96;
    letter-spacing: .018em;
    margin: 0 0 43px;
    max-width: 610px;
    text-shadow: 0 0 11px rgba(255,255,255,.06);
  }

  /* подзаголовок */
  .hero-v2__text {
    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 24px;
    line-height: 1.16;
    font-weight: 400;
    color: #fff;
    margin: 0 0 50px;
    max-width: 530px;
  }

  /* кнопки */
  .hero-v2__actions {
    width: 690px;
    height: 68px;
    display: grid;
    grid-template-columns: 260px 1fr;
    position: relative;
    z-index: 10;
  }

  .hero-v2__btn {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
  }

  .hero-v2__btn--black {
    background: #020202;
    color: #fff;
    border-radius: 25px 0 0 25px;
    box-shadow: 0 0 36px rgba(225,17,52,.86);
  }

  .hero-v2__btn--red {
    color: #050505;
    border-radius: 0 25px 25px 0;
    background: linear-gradient(90deg, #360509 0%, #80101c 35%, #bd102b 70%, #e91a3d 100%);
  }

  /* микроскоп */
  .hero-v2__microscope {
    position: absolute;
    z-index: 5;
    right: -140px;
    top: 94px;
    width: 675px;
    height: auto;
    max-width: none !important;
    filter: drop-shadow(0 18px 20px rgba(0,0,0,.4));
  }

  /* фраза "за 1 день" */
  .hero-v2__day-img {
    position: absolute;
    z-index: 7;
    right: 252px;
    bottom: 144px;
    width: 272px;
    height: auto;
    max-width: none !important;
  }

  /* бегущая строка сразу под первым экраном */
  .marquee {
    height: 58px;
    margin-top: 200px;
    background: #bd102b;
    color: #050505;
    font-family: 'Wix', Arial, sans-serif !important;
    font-weight: 700;
  }

  .marquee span {
    font-size: 25px;
    line-height: 58px;
  }

  /* убираем старые конфликты */
  .hero,
  .hero-v2 {
    box-sizing: border-box;
  }

  .hero-grid,
  .hero-content,
  .hero-logo,
  .hero-micro,
  .hero-day,
  .date-badge {
    display: none !important;
  }

  /* =========================================================
    GLOBAL SINGLE BACKGROUND FOR THE WHOLE LANDING
    Фон теперь общий для всего лендинга, секции прозрачные.
  ========================================================= */

  main,
  .site-header,
  .footer,
  .hero-v2,
  .marquee,
  .question,
  .track,
  .features,
  .lead,
  .speakers,
  .program,
  .result,
  .calc,
  .videos,
  .tickets,
  .faq,
  .partners,
  .contacts,
  .section-lines {
    background: transparent !important;
  }

  .section-lines {
    overflow: visible;
  }

  .section-lines::before {
    display: none !important;
  }

  .section-lines > * {
    position: relative;
    z-index: 1;
  }

  /* Затемнение поверх общего фона, чтобы текст читался стабильно */
  main {
    position: relative;
    z-index: 1;
  }

  /* main::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: rgba(0, 0, 0, .18);
  } */

  @media (max-width: 768px) {
    body {
      background-size: 768px auto !important;
    }
  }

  /* ===== UPDATED PAYBACK CALCULATOR ===== */
  .calc-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 32px;
    background: rgba(0, 0, 0, .55);
    box-shadow: 0 0 45px rgba(189, 16, 43, .22);
  }

  .calc-row {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 22px;
    align-items: center;
    margin-bottom: 22px;
  }

  .calc-row label {
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
    color: #fff;
  }

  .calc-row label span {
    color: #e11334;
    font-weight: 800;
  }

  .calc-row input {
    width: 100%;
    height: 58px;
    border: 1px solid rgba(225, 19, 52, .7);
    border-radius: 18px;
    background: rgba(8, 8, 10, .9);
    color: #fff;
    padding: 0 20px;
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    outline: none;
    box-shadow: inset 0 0 20px rgba(189, 16, 43, .18);
  }

  .calc-row input:focus {
    border-color: #ff3155;
    box-shadow: 0 0 22px rgba(225, 19, 52, .36), inset 0 0 20px rgba(189, 16, 43, .18);
  }

  .calc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .calc-details div {
    min-height: 64px;
    border-radius: 18px;
    background: rgba(189, 16, 43, .18);
    padding: 14px 18px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
  }

  .calc-details b {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 22px;
  }

  .payback span {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
  }

  @media (max-width: 768px) {
    .calc-box {
      padding: 24px 18px;
      border-radius: 24px;
    }

    .calc-row {
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 20px;
    }

    .calc-row label {
      font-size: 17px;
    }

    .calc-row input {
      height: 54px;
      font-size: 19px;
    }

    .calc-details {
      grid-template-columns: 1fr;
    }
  }

  /* =========================================================
    HERO MATCH TO PROVIDED DESKTOP MOCKUP 1684x893
    Финальная правка первого экрана: позиции, размеры, микроскоп.
  ========================================================= */
  @media (min-width: 1200px) {
    .hero-container {
      width: 1180px !important;
      max-width: calc(100% - 40px) !important;
    }

    .site-header {
      padding-top: 52px !important;
    }

    .header-inner {
      height: 48px !important;
    
      padding-right: 0 !important;
      gap: 34px !important;
    }

    .header-logo {
      width: 240px !important;
      flex: 0 0 240px !important;
    }

    .header-logo img {
      width: 240px !important;
    }

    .header-labomed {
      width: 46px !important;
      flex: 0 0 46px !important;
      margin-right: 58px !important;
    }

    .header-labomed img {
      width: 46px !important;
              margin-left: 40px;
    }

    .nav {
      gap: 27px !important;
      font-size: 14px !important;
      margin-right: 6px !important;
    }

    .header-join {
      width: 154px !important;
      height: 35px !important;
      border-radius: 14px !important;
      font-size: 13px !important;
    }

    .hero-v2 {
      height: 893px !important;
      min-height: 893px !important;
    }

    .hero-v2__inner {
      height: 893px !important;
      padding-top: 170px !important;
    }

    .hero-v2__content {
      width: 720px !important;
      margin-left: 116px !important;
    }

    .hero-v2__logo {
      width: 562px !important;
      margin: 0 0 45px 0 !important;
    }

    .hero-v2__date {
      height: 58px !important;
      margin: 0 0 24px 0 !important;
      font-size: 39px !important;
    }

    .hero-v2__date span,
    .hero-v2__date em {
      height: 58px !important;
    }

    .hero-v2__date span:first-child {
      padding-left: 28px !important;
      padding-right: 28px !important;
    }

    .hero-v2__date span:nth-child(2) {
      padding-left: 34px !important;
      padding-right: 34px !important;
      font-size: 37px !important;
      margin-left: -8px !important;
    }

    .hero-v2__date em {
      padding-left: 17px !important;
      padding-right: 31px !important;
      font-size: 36px !important;
    }

    .hero-v2__title {
      font-size: 56px !important;
      line-height: 1.13 !important;
      letter-spacing: .025em !important;
      max-width: 720px !important;
      margin-bottom: 82px !important;
    }

    .hero-v2__text {
      font-size: 28px !important;
      line-height: 1.13 !important;
      max-width: 590px !important;
      margin-bottom: 48px !important;
    }

    .hero-v2__actions {
      width: 950px !important;
      height: 74px !important;
      grid-template-columns: 335px 1fr !important;
    }

    .hero-v2__btn {
      height: 74px !important;
      font-size: 24px !important;
    }

    .hero-v2__btn--black {
      border-radius: 34px 0 0 34px !important;
    }

    .hero-v2__btn--red {
      border-radius: 0 34px 34px 0 !important;
    }

    .hero-v2__microscope {
      width: 785px !important;
      top: 108px !important;
      right: -200px !important;
      z-index: 5 !important;
      animation: none !important;
    }

    .hero-v2__day-img {
      width: 270px !important;
      right: 235px !important;
      bottom: 155px !important;
      z-index: 8 !important;
    }
  }

  /* =========================================================
    HERO CTA BAR FIX — кнопки сделаны HTML/CSS, НЕ картинкой
    ========================================================= */
  .hero-v2__actions {
    width: min(950px, 100%) !important;
    height: 74px !important;
    display: grid !important;
    grid-template-columns: 335px 1fr !important;
    align-items: stretch !important;
    position: relative !important;
    z-index: 20 !important;
    border-radius: 999px !important;
    overflow: visible !important;
    background: linear-gradient(
      90deg,
      rgba(188, 17, 43, .96) 0%,
      rgba(188, 17, 43, .96) 28%,
      rgba(41, 5, 10, .96) 46%,
      rgba(10, 7, 10, .98) 65%,
      rgba(188, 17, 43, .96) 100%
    ) !important;
    box-shadow: none !important;
  }

  .hero-v2__actions::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 335px;
    border-radius: 999px;
    background: linear-gradient(180deg, #cc1732 0%, #b9112b 100%);
    box-shadow:
      0 0 34px rgba(225, 17, 52, .58),
      0 14px 38px rgba(225, 17, 52, .28);
    z-index: 0;
    pointer-events: none;
  }

  .hero-v2__btn {
    height: 74px !important;
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    transition: transform .18s ease, filter .18s ease !important;
  }

  .hero-v2__btn:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.05) !important;
  }

  .hero-v2__btn--black {
    color: #fff !important;
    border-radius: 999px !important;
  }

  .hero-v2__btn--red {
    color: #050505 !important;
    border-radius: 0 999px 999px 0 !important;
  }

  @media (max-width: 1100px) {
    .hero-v2__actions {
      width: min(720px, 100%) !important;
      height: 66px !important;
      grid-template-columns: 260px 1fr !important;
    }

    .hero-v2__actions::before {
      width: 260px !important;
    }

    .hero-v2__btn {
      height: 66px !important;
      min-height: 66px !important;
      font-size: 20px !important;
    }
  }

  @media (max-width: 640px) {
    .hero-v2__actions {
      width: 100% !important;
      height: auto !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 14px !important;
      background: transparent !important;
      border-radius: 0 !important;
    }

    .hero-v2__actions::before {
      display: none !important;
    }

    .hero-v2__btn {
      width: 100% !important;
      height: 58px !important;
      min-height: 58px !important;
      border-radius: 999px !important;
      font-size: 18px !important;
    }

    .hero-v2__btn--black {
      background: linear-gradient(180deg, #cc1732 0%, #b9112b 100%) !important;
      color: #fff !important;
      box-shadow: 0 0 28px rgba(225, 17, 52, .45) !important;
    }

    .hero-v2__btn--red {
      background: linear-gradient(90deg, #240307 0%, #bd102b 100%) !important;
      color: #050505 !important;
    }
  }

  /* =========================================================
    FINAL HERO MATCH FIX 20.05 — макет: без красных линий,
    микроскоп справа, CTA ниже, бегущая строка ПОСЛЕ первого экрана
    ========================================================= */



  .site-header {
    top: 0 !important;
    padding-top: 50px !important;
  }

  .hero-container {
    width: 1180px !important;
    max-width: calc(100% - 40px) !important;
  }

  .header-inner {
    height: 42px !important;
  }

  .header-logo {
    width: 170px !important;
    flex-basis: 170px !important;
  }

  .header-logo img {
      width: 230px !important;
      max-width: 400px !important;
  }

  .header-labomed {
    margin-left: 38px !important;
    margin-right: auto !important;
  }

  .nav {
    gap: 28px !important;
  }

  .header-join {
    width: 154px !important;
    height: 36px !important;
    border-radius: 999px !important;
  }

  .hero-v2 {
    height: 860px !important;
    min-height: 860px !important;

    background: transparent !important;
  }

  .hero-v2::before,
  .hero-v2::after {
    display: none !important;
    content: none !important;
  }

  .hero-v2__inner {
    height: 860px !important;
    padding-top: 165px !important;
    position: relative !important;
  }

  .hero-v2__content {
    width: 720px !important;
    margin-left: 70px !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .hero-v2__logo {
    width: 520px !important;
    margin: 0 0 42px 0 !important;
  }

  .hero-v2__date {
    height: 58px !important;
    margin: 0 0 22px 0 !important;
    border-radius: 999px !important;
    background: #040405 !important;
    font-size: 34px !important;
    box-shadow: none !important;
  }

  .hero-v2__date span,
  .hero-v2__date em {
    height: 58px !important;
  }

  .hero-v2__date span:first-child {
    padding: 0 30px !important;
    background: #050505 !important;
    color: #bd102b !important;
  }

  .hero-v2__date span:nth-child(2) {
    padding: 0 36px !important;
    margin-left: -8px !important;
    background: #bd102b !important;
    color: #050505 !important;
    font-size: 34px !important;
    border-radius: 999px !important;
  }

  .hero-v2__date em {
    padding: 0 30px 0 20px !important;
    color: #bd102b !important;
    font-size: 32px !important;
  }

  .hero-v2__title {
    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 58px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    max-width: 680px !important;
    margin: 0 0 82px 0 !important;
    color: #fff !important;
  }

  .hero-v2__text {
    font-size: 30px !important;
    line-height: 1.17 !important;
    max-width: 590px !important;
    margin: 0 !important;
    color: #fff !important;
  }

  .hero-v2__microscope {
    width: 755px !important;
    right: -165px !important;
    top: 85px !important;
    z-index: 7 !important;
    animation: none !important;
  }

  .hero-v2__day-img {
    width: 270px !important;
    right: 220px !important;
    bottom: 155px !important;
    z-index: 8 !important;
  }

  .hero-v2__actions {
    position: absolute !important;
    left: 70px !important;
    bottom: 44px !important;
    width: 970px !important;
    max-width: calc(100% - 140px) !important;
    height: 76px !important;
    display: grid !important;
    grid-template-columns: 330px 1fr !important;
    border-radius: 999px !important;
    overflow: visible !important;
    z-index: 20 !important;
    background: linear-gradient(90deg,
      rgba(188, 17, 43, .98) 0%,
      rgba(188, 17, 43, .98) 28%,
      rgba(59, 7, 13, .97) 48%,
      rgba(8, 7, 9, .99) 69%,
      rgba(188, 17, 43, .98) 100%
    ) !important;
    box-shadow: none !important;
  }

  .hero-v2__actions::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 330px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #c81732 0%, #b7112b 100%) !important;
    box-shadow: 0 0 34px rgba(225, 17, 52, .50) !important;
    z-index: 0 !important;
  }

  .hero-v2__btn {
    height: 76px !important;
    min-height: 76px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 999px !important;
    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .hero-v2__btn--black {
    color: #fff !important;
  }

  .hero-v2__btn--red {
    color: #050505 !important;
  }

  .marquee {
    margin-top: 100px !important;
    height: 74px !important;
    background: #bd102b !important;
    color: #050505 !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .marquee span {
    font-size: 27px !important;
    line-height: 74px !important;
    font-weight: 900 !important;
  }

  @media (max-width: 1200px) {
    .hero-v2__content {
      margin-left: 30px !important;
    }

    .hero-v2__actions {
      left: 30px !important;
      max-width: calc(100% - 60px) !important;
    }

    .hero-v2__microscope {
      width: 690px !important;
      right: -210px !important;
    }
  }

  @media (max-width: 760px) {
    .site-header {
      padding-top: 20px !important;
    }

    .hero-v2 {
      height: auto !important;
      min-height: 760px !important;
      padding-bottom: 44px !important;
    }

    .hero-v2__inner {
      height: auto !important;
      min-height: 760px !important;
      padding-top: 110px !important;
    }

    .hero-v2__content {
      width: 100% !important;
      margin-left: 0 !important;
    }

    .hero-v2__logo {
      width: 320px !important;
    }

    .hero-v2__title {
      font-size: 38px !important;
      margin-bottom: 36px !important;
    }

    .hero-v2__text {
      font-size: 21px !important;
    }

    .hero-v2__microscope {
      width: 440px !important;
      right: -170px !important;
      top: 210px !important;
      opacity: .72 !important;
    }

    .hero-v2__day-img {
      width: 180px !important;
      right: 8px !important;
      bottom: 210px !important;
    }

    .hero-v2__actions {
      position: relative !important;
      left: auto !important;
      bottom: auto !important;
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 40px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 14px !important;
      height: auto !important;
      background: transparent !important;
    }

    .hero-v2__actions::before {
      display: none !important;
    }

    .hero-v2__btn {
      height: 58px !important;
      min-height: 58px !important;
      font-size: 18px !important;
    }

    .hero-v2__btn--black,
    .hero-v2__btn--red {
      background: #bd102b !important;
      color: #fff !important;
    }
  }

  /* =========================================================
    CALCULATOR MOCKUP FIX
    Версия под макет: красные значения-плашки + длинные слайдеры.
  ========================================================= */
  .calc.section-lines {
    padding: 125px 0 110px;
  }

  .calc .racing-title {
    margin-bottom: 58px;
  }

  .calc-box.calc-box-mockup {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .calc-box-mockup .calc-row {
    display: block;
    margin-bottom: 42px;
  }

  .calc-box-mockup .calc-row label {
    display: block;
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    color: #fff;
  }

  .calc-control {
    display: grid;
    grid-template-columns: 125px 1fr;
    align-items: center;
    gap: 18px;
  }

  .calc-box-mockup .calc-value {
    width: 125px;
    height: 48px;
    padding: 0 13px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #b9152e 0%, #861223 100%);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    outline: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .26);
    appearance: textfield;
    -moz-appearance: textfield;
  }

  .calc-box-mockup .calc-value::-webkit-outer-spin-button,
  .calc-box-mockup .calc-value::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
  }

  .calc-range-wrap {
    min-width: 0;
  }

  .calc-box-mockup input[type="range"] {
    width: 100%;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #be142f var(--progress, 35%), #050507 var(--progress, 35%));
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    accent-color: #be142f;
  }

  .calc-box-mockup input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #be142f var(--progress, 35%), #050507 var(--progress, 35%));
  }

  .calc-box-mockup input[type="range"]::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    margin-top: -7px;
    border: 0;
    border-radius: 50%;
    background: #be142f;
    box-shadow: 0 0 0 4px rgba(190, 20, 47, .16);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .calc-box-mockup input[type="range"]::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: #050507;
  }

  .calc-box-mockup input[type="range"]::-moz-range-progress {
    height: 8px;
    border-radius: 999px;
    background: #be142f;
  }

  .calc-box-mockup input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #be142f;
    box-shadow: 0 0 0 4px rgba(190, 20, 47, .16);
    cursor: pointer;
  }

  .calc-limits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 5px;
    color: rgba(255,255,255,.42);
    font-size: 11px;
    line-height: 1;
  }

  .calc-box-mockup .payback {
    margin-top: 62px;
  }

  .calc-box-mockup .payback span {
    display: block;
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
  }

  .calc-box-mockup .payback strong {
    min-height: 78px;
    border-radius: 28px;
    background: linear-gradient(90deg, #d11635 0%, #b8122c 100%);
    box-shadow: 0 0 34px rgba(225, 19, 52, .62), 0 14px 42px rgba(0, 0, 0, .42);
    color: #fff;
    font-size: 25px;
    font-weight: 800;
  }

  @media (max-width: 768px) {
    .calc.section-lines {
      padding: 78px 0 70px;
    }

    .calc .racing-title {
      margin-bottom: 36px;
    }

    .calc-box-mockup .calc-row {
      margin-bottom: 32px;
    }

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

    .calc-box-mockup .calc-value {
      width: 150px;
      height: 46px;
    }

    .calc-box-mockup .payback {
      margin-top: 42px;
    }
  }

  /* =========================================================
    DESKTOP MOCKUP CLOSER PASS — 22.05
    Подгонка под финальный PDF: узкий контент, гоночные линии,
    калькулятор, билеты, блок готовой системы.
  ========================================================= */
  :root{
    --max: 1024px;
    --red: #bd102b;
    --red2: #ed1739;
  }

  .container{width:min(1024px, calc(100% - 40px));}
  .narrow{max-width:760px;}
  .hero-container{width:min(1024px, calc(100% - 40px));}
  .site-header{padding-top:26px;}
  .header-inner{max-width:1024px;height:38px;gap:24px;}
  .header-logo{width:132px;flex-basis:132px;}
  .header-logo img{width:132px;}
  .header-labomed{width:42px;flex-basis:42px;margin-left:18px;}
  .header-labomed img{width:34px;}
  .nav{gap:24px;font-size:12px;margin-left:auto;}
  .header-join{height:31px;min-width:128px;border-radius:12px;background:#c41331;}

  .section-lines{background:transparent;}
  .section-lines::before{opacity:.75;background:
    linear-gradient(12deg, transparent 8%, rgba(255,30,55,.44) 8.2%, rgba(255,255,255,.36) 8.28%, rgba(255,16,43,.9) 8.42%, transparent 8.75%),
    linear-gradient(7deg, transparent 27%, rgba(255,30,55,.34) 27.18%, rgba(255,255,255,.26) 27.26%, rgba(255,16,43,.78) 27.42%, transparent 27.78%),
    linear-gradient(-6deg, transparent 66%, rgba(255,30,55,.30) 66.18%, rgba(255,255,255,.20) 66.26%, rgba(255,16,43,.66) 66.42%, transparent 66.78%),
    radial-gradient(circle at 18% 25%, rgba(196,16,43,.38), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(196,16,43,.34), transparent 35%);
  }

  /* HERO */
  .hero-v2{height:700px;min-height:700px;background:transparent;}
  .hero-v2::before{background:
    radial-gradient(circle at 18% 55%, rgba(218,16,47,.85), rgba(120,10,25,.48) 36%, rgba(10,5,6,.15) 62%, transparent 78%),
    linear-gradient(90deg, rgba(191,16,43,.95) 0%, rgba(97,10,22,.75) 39%, rgba(4,4,6,.92) 76%, #050506 100%);
  }
  .hero-v2::after{opacity:.9;}
  .hero-v2__inner{height:700px;padding-top:136px;}
  .hero-v2__content{width:545px;margin-left:82px;}
  .hero-v2__logo{width:315px;margin-bottom:20px;}
  .hero-v2__date{height:47px;margin-bottom:20px;font-size:26px;}
  .hero-v2__date span{padding:0 20px;}
  .hero-v2__date span:first-child{padding-left:24px;padding-right:18px;}
  .hero-v2__date span:nth-child(2){font-size:25px;padding-left:25px;padding-right:25px;}
  .hero-v2__date em{font-size:24px;padding-left:18px;padding-right:20px;}
  .hero-v2__title{font-size:64px!important;line-height:.96!important;margin:0 0 46px;letter-spacing:.01em;}
  .hero-v2__text{font-size:25px;line-height:1.13;margin-bottom:46px;max-width:520px;}
  .hero-v2__actions{width:730px;height:70px;grid-template-columns:285px 1fr;}
  .hero-v2__btn{font-size:22px;border-radius:26px;}
  .hero-v2__btn--black{background:#050506;color:#fff;box-shadow:0 0 30px rgba(237,23,57,.8);}
  .hero-v2__btn--red{background:linear-gradient(90deg,#4b070f 0%,#77101e 28%,#b8122b 68%,#f11942 100%);color:#040405;}
  .hero-v2__microscope{right:-205px;top:56px;width:735px;animation:none;}
  .hero-v2__day-img{right:205px;bottom:200px;width:260px;}
  .marquee{height:56px;background:#bd102b;box-shadow:0 0 30px rgba(225,18,52,.45);}
  .marquee span{font-size:22px;line-height:1;}

  /* QUESTION / FEATURES */
  .question{padding:72px 0 96px;min-height:610px;}
  .question-grid{grid-template-columns:1fr;justify-items:center;gap:22px;}
  .answer-card{display:none!important;}
  .question-box{width:440px;min-height:330px;border-radius:24px;padding:64px 42px 36px;background:linear-gradient(135deg,rgba(190,18,44,.88),rgba(25,7,10,.86));box-shadow:0 0 50px rgba(225,18,52,.45);}
  .question-box h2{font-size:35px;line-height:1.13;margin-bottom:34px;}
  .choice-row .btn{min-height:62px;border-radius:17px;min-width:142px;background:#050506;}
  .question-box p{font-size:15px;line-height:1.25;color:#af2537;margin-top:8px;}
  .webinar-banner{width:440px;min-height:88px;border-radius:18px;background:linear-gradient(90deg,#c41531 0%,#a71027 64%,#050506 100%);font-size:32px;line-height:.9;padding:18px 115px 16px 24px;position:relative;box-shadow:0 0 30px rgba(225,18,52,.35);}
  .webinar-banner span{position:absolute;right:28px;top:50%;transform:translateY(-50%);font-family:Arial;font-size:52px;font-weight:100;}

  .track{padding:98px 0 70px;}
  .split{grid-template-columns:470px 1fr;align-items:start;}
  .track h2{font-size:80px;margin-bottom:34px;}
  .plain-list{font-size:22px;line-height:1.22;margin-bottom:92px;}
  .track h3{font-size:52px;line-height:.94;margin-bottom:35px;}
  .red-text{font-size:27px;color:#c41631;font-weight:800;text-transform:uppercase;line-height:1.05;}
  .stand-img{width:310px;margin-left:auto;margin-top:0;}
  .features{padding:75px 0 105px;}

  .feature{min-height:155px;border-radius:14px;padding:18px 15px;background:linear-gradient(145deg,#c61532,#5e0914);box-shadow:0 0 24px rgba(200,18,44,.28);align-items:flex-start;}
  .feature img{width:22px;height:22px;margin-bottom:22px;opacity:.95;}
  .feature span{font-size:14px;line-height:1.1;}

  /* FORM + SPEAKERS */
  .lead{padding:56px 0 100px;}
  .lead-grid{display:block;}
  .lead-grid h2{height:58px;display:flex;align-items:center;justify-content:center;background:#bd102b;color:#050506;font-size:30px;margin:0 calc((100vw - min(1024px, calc(100vw - 40px))) / -2) 72px;}
  .lead-form{max-width:650px;margin:0 auto;border-radius:20px;padding:46px 28px 38px;background:linear-gradient(145deg,rgba(0,0,0,.92),rgba(110,12,25,.54));box-shadow:0 0 48px rgba(225,18,52,.38);}
  .form-row{grid-template-columns:repeat(4,1fr);gap:12px;}
  .lead-form input{height:50px;border-radius:17px;border:1px solid #bd102b;background:rgba(0,0,0,.2);color:#fff;text-align:center;}
  .agree{font-size:10px;margin:20px 0;opacity:.7;}
  .lead-form .btn-wide{height:72px;border-radius:18px;font-size:18px;background:#050506;box-shadow:0 0 36px rgba(238,20,56,.78);}
  .lead-form p{font-size:13px;text-align:center;color:#8f1c2c;margin:18px 0 0;}
  .speakers{padding:88px 0 110px;}
  .speakers h2{font-size:56px;margin:0 0 36px 80px;}
  .speaker-track{gap:12px;grid-template-columns:repeat(4,1fr);}
  .speaker{min-height:395px;border-radius:14px;padding:112px 16px 22px;background:linear-gradient(180deg,#c41631 0%,#9d0d24 55%,#210409 100%);box-shadow:0 0 26px rgba(225,18,52,.28);}
  .speaker img{width:108px;height:108px;top:20px;left:50%;transform:translateX(-50%);}
  .speaker h3{font-size:17px;}
  .speaker p,.speaker b{font-size:14px;line-height:1.22;}
  .speaker-more{height:46px;border-radius:14px;background:#050506;box-shadow:0 0 20px rgba(225,18,52,.7);}
  .video-link{width:430px;height:58px;margin:58px 0 0 0;border-radius:16px;background:linear-gradient(90deg,#c41631 0%,#9c1026 72%,#050506 100%);font-size:18px;}

  /* PROGRAM */
  .program{padding:75px 0 105px;}
  .program .narrow{max-width:610px;}
  .program h2{font-size:48px;margin-bottom:48px;}
  .timeline{gap:18px;}
  .time-card{min-height:86px;border-radius:14px;background:#bd102b;padding:22px 28px;grid-template-columns:150px 1fr;box-shadow:0 0 24px rgba(160,10,30,.26);}
  .time-card.big{min-height:190px;}
  .time-card b{font-size:26px;}
  .time-card span{font-size:20px;line-height:1.12;}
  .time-card small{font-size:13px;color:#170306;line-height:1.15;}
  .time-card img{width:78px;height:78px;}
  .mini-faces img{width:68px;height:68px;}
  .center-actions{height:58px;display:grid;grid-template-columns:170px 1fr;max-width:574px;margin:58px auto 0;gap:0;}
  .center-actions .btn{min-height:58px;border-radius:16px;}
  .center-actions .btn-dark{border-top-right-radius:0;border-bottom-right-radius:0;}
  .center-actions .btn-red{border-top-left-radius:0;border-bottom-left-radius:0;color:#050506;}

  /* LAUNCH SYSTEM + CALC */
  .launch-system{padding:90px 0 40px;}
  .launch-system .result-grid{min-height:470px;display:grid;grid-template-columns:1fr 310px;align-items:start;gap:36px;}
  .launch-system h2{background:transparent;color:#fff;text-align:left;padding:0;margin:0 0 36px;font-size:50px;line-height:.96;}
  .launch-list{list-style:none;margin:0;padding:0;max-width:500px;}
  .launch-list li{font-size:18px;line-height:1.28;margin-bottom:22px;}
  .launch-book{width:310px!important;transform:rotate(9deg)!important;margin:34px 0 0!important;filter:drop-shadow(0 20px 20px rgba(0,0,0,.55));}
  .calc.section-lines{padding:55px 0 115px;}
  .calc .narrow{max-width:760px;     margin-left: 30px;}
  .calc .racing-title{font-size:80px;line-height:.97;margin:0 0 70px; text-align: left;}
  .calc-box.calc-box-mockup{max-width:760px;margin:0 auto;background:linear-gradient(135deg, #a40c23, #4a0710) !important;}
  .calc-box-mockup .calc-row{margin-bottom:34px;}
  .calc-box-mockup .calc-row label{font-size:16px;margin-bottom:12px;}
  .calc-control{grid-template-columns:96px 1fr;gap:18px;}
  .calc-box-mockup .calc-value{width:96px;height:42px;border-radius:13px;background:linear-gradient(180deg,#9b1024,#640a17);font-size:12px;}
  .calc-box-mockup input[type="range"],.calc-box-mockup input[type="range"]::-webkit-slider-runnable-track{height:6px;}
  .calc-box-mockup input[type="range"]::-webkit-slider-thumb{width:18px;height:18px;margin-top:-6px;}
  .calc-limits{font-size:9px;margin-top:6px;color:rgba(255,255,255,.36);}
  .calc-box-mockup .payback{margin-top:42px;}
  .calc-box-mockup .payback span{font-size:17px;margin-bottom:14px;}
  .calc-box-mockup .payback strong{min-height:70px;border-radius:17px;background:#050506;box-shadow:0 0 36px rgba(238,20,56,.9);font-size:18px;color:#fff;}

  /* VIDEOS + TICKETS */
  .videos{padding:75px 0 80px;}
  .videos h2{font-size:80px;}
  .video-cards{grid-template-columns:repeat(3,1fr);}
  .video-cards a{min-height:120px;background:linear-gradient(135deg,#141414,#bd102b);border-radius:18px;}
  .tickets{padding:85px 0 105px;position:relative;}
  .tickets h2{font-size:58px;line-height:.95;margin:0 0 60px 80px;}
  .price-badge{position:absolute;right:20%;top:125px;transform:rotate(-8deg);background:#111;color:#bd102b;border:2px solid #bd102b;border-radius:10px;padding:13px 22px;font-family:'a_LCDNova','Arial Narrow',Arial,sans-serif;font-size:34px;line-height:.9;text-transform:uppercase;box-shadow:0 0 25px rgba(225,18,52,.45);}
  .price-badge small{font-family:'Wix',Arial,sans-serif;font-size:12px;line-height:1.05;color:#bd102b;font-weight:800;}
  .ticket-grid{grid-template-columns:repeat(2,280px);justify-content:center;gap:28px;}
  .ticket{min-height:405px;border-radius:20px;padding:30px 26px;background:linear-gradient(160deg,#c41631 0%,#a70f27 56%,#180306 100%);}
  .ticket.wide{grid-column:1/3;min-height:190px;max-width:590px;width:100%;margin:0 auto;}
  .ticket.featured{transform:none;}
  .ticket h3{font-size:33px;line-height:.98;margin-bottom:26px;}
  .ticket b{font-size:30px;color:#fff;margin-bottom:28px;}
  .ticket p{font-size:16px;line-height:1.25;}
  .ticket em{display:block;color:#050506;font-style:normal;font-weight:800;margin-bottom:20px;text-transform:uppercase;}
  .ticket .btn{min-height:46px;border-radius:13px;font-size:14px;margin-top:auto;}
  .tickets-note{text-align:center;margin-top:18px;color:#fff;font-size:15px;}

  /* FAQ / PARTNERS / CONTACTS */
  .faq{padding:80px 0 65px;}
  .faq .narrow{max-width:610px;}
  .faq h2,.partners h2,.contacts h2{font-size:80px;}
  .faq-item button{min-height:44px;background:#bd102b;color:#fff;border-bottom:1px solid rgba(255,255,255,.25);font-size:16px;}
  .faq-item div{background:#941022;color:#fff;font-size:15px;}
  .partners{padding:50px 0 70px;text-align:center;}
  .partner-logos{max-width:540px;margin:25px auto 22px;display:flex;align-items:center;justify-content:center;gap:60px;}
  .partner-logos img{max-height:35px;width:auto;filter:brightness(0) invert(1);}
  .partners .btn{width:390px;min-height:50px;border-radius:15px;}
  .contacts{padding:75px 0 95px;}
  .contacts-grid{grid-template-columns:1fr;gap:45px;max-width:720px;text-align:left;}
  .contacts a{color:#fff;}
  .hotel-gallery{grid-template-columns:repeat(3,1fr);gap:12px;}
  .hotel-gallery img{height:112px;border-radius:13px;object-fit:cover;}
  .footer{padding:45px 0;background:rgba(0,0,0,.35);}
  .footer-inner{border-top:1px solid rgba(255,255,255,.35);padding-top:34px;}

  @media (max-width: 768px){
    .hero-v2{height:auto;min-height:760px;}
    .hero-v2__inner{height:auto;padding:110px 0 55px;}
    .hero-v2__content{margin-left:0;width:100%;}
    .hero-v2__title{font-size:44px!important;}
    .hero-v2__microscope{position:relative;right:auto;top:auto;width:115%;margin:20px 0 0 10%;}
    .hero-v2__day-img{right:20px;bottom:130px;width:170px;}
    .hero-v2__actions{width:100%;grid-template-columns:1fr;gap:12px;height:auto;}
    .hero-v2__btn--black,.hero-v2__btn--red{border-radius:20px;min-height:58px;}
    .features-inner,.speaker-track,.ticket-grid,.form-row,.split,.launch-system .result-grid{grid-template-columns:1fr;}
    .ticket.wide{grid-column:auto;}
    .question-box,.webinar-banner{width:100%;}
    .price-badge{position:static;transform:none;margin:0 auto 28px;width:max-content;}
  }


  /* ===== FINAL HERO FONT FIX ===== */

  .hero-v2__title,
  .hero-v2__title *,
  .hero-v2__date,
  .hero-v2__date *,
  .hero-v2__date em {
    font-family: 'a_LCDNova', Arial, sans-serif !important;
    font-weight: 400 !important;
  }

  .hero-v2__title {
    color: #fff !important;
    text-transform: uppercase !important;
    font-size: 72px !important;
    line-height: .98 !important;
    letter-spacing: .02em !important;
    max-width: 720px !important;
    margin: 0 0 70px !important;
  }

  .hero-v2__date {
    font-size: 36px !important;
    letter-spacing: .02em !important;
  }

  .hero-v2__date span:nth-child(2) {
    font-family: 'Wix', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 36px !important;
  }

  .hero-v2__date em {
    font-size: 36px !important;
  }
  .hero-v2__actions {
      position: absolute !important;
      left: 0px !important;
      bottom: -105px !important;
          max-width: calc(100% - -200px) !important;
  }
  /* ===== HERO CTA EXACT STYLE FIX ===== */

  @media (min-width: 1200px) {

    .hero-v2__actions {
      position: absolute !important;
      width: 950px !important;
      height: 74px !important;

      display: grid !important;
      grid-template-columns: 335px 1fr !important;

      border-radius: 999px !important;
      overflow: visible !important;

      background: linear-gradient(
        90deg,
        #050505 0%,
        #050505 35%,
        rgba(20, 2, 6, .96) 36%,
        rgba(90, 8, 18, .92) 58%,
        #bd102b 100%
      ) !important;

      box-shadow: none !important;
      z-index: 50 !important;
    }

    .hero-v2__actions::before {
      content: "" !important;
      position: absolute !important;
      left: 0 !important;
        top: -8px !important;
      width: 335px !important;
      height: 74px !important;

      border-radius: 999px !important;
      background: #020202 !important;

      z-index: 0 !important;
      pointer-events: none !important;

      box-shadow:
        0 0 26px rgba(255, 20, 60, .95),
        0 0 55px rgba(225, 17, 52, .82),
        0 0 95px rgba(225, 17, 52, .55),
        0 18px 40px rgba(225, 17, 52, .34) !important;
    }

    .hero-v2__btn--black {
      color: #fff !important;
      border-radius: 999px !important;
      position: relative !important;
      z-index: 2 !important;
      background: transparent !important;

      filter:
        drop-shadow(0 0 18px rgba(225,17,52,.55))
        drop-shadow(0 0 34px rgba(225,17,52,.35));
    }
  }
  .hero-v2__microscope {
    position: absolute !important;

    width: 760px !important;
    max-width: none !important;

    right: -210px !important;
    top: 92px !important;

    z-index: 10 !important;
    animation: none !important;
    pointer-events: none !important;
  }
  /* ===== HERO AUTO LAYOUT ===== */

  .hero-v2__inner{
      display:flex !important;
      justify-content:space-between !important;
      align-items:flex-start !important;
      position:relative !important;
  }

  .hero-v2__content{
      width:720px !important;
      flex:0 0 720px !important;
      position:relative !important;
      z-index:20 !important;
  }
  .hero-v2__microscope{
  position: absolute !important;
      width: 850px !important;
      max-width: none !important;
      top: 20px !important;

      right: -409px !important;
      transform:translateX(22%) !important;

      z-index:10 !important;
      animation:none !important;
      pointer-events:none !important;
  }
  /* ===== HERO 1 DAY BLOCK ===== */

  .hero-v2__day{
      position:absolute;
      right:190px;
      top:540px;

      z-index:15;
      text-align:center;
      pointer-events:none;
  }

  .hero-v2__day-title{
      font-family:'a_LCDNova', sans-serif;
      font-size:65px;
      line-height:.88;
      color:#d31539;
      letter-spacing:.02em;

      text-transform:uppercase;

      text-shadow:
          0 0 8px rgba(211,21,57,.18);
  }

  .hero-v2__day-text{
      margin-top:14px;

      font-family:'Wix', sans-serif;
      font-size:24px;
      line-height:1.08;
      font-weight:700;

      color:#d31539;
  }
  .hero-v2__actions {
      position: absolute !important;
      left: 0px !important;
      bottom: -150px !important;
      max-width: calc(100% - -200px) !important;
  }
  .hero-v2__day {
      position: absolute;
      right: 150px;
      top: 617px;
      z-index: 15;
      text-align: right;
      pointer-events: none;
  }
  .webinar-banner {
    position: relative;
    display: block;
    width: 760px;
    height: 106px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    padding: 0 !important;
    background: transparent !important;
  }

  .webinar-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .webinar-banner__arrow {
    position: absolute;
    right: 42px;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: auto;
    transform: translateY(-50%);
  }

  .webinar-banner__text {
    display: none !important;
  }
  /* =========================
    QUESTION SCREEN — LIKE MOCKUP
  ========================= */

  .question {
    position: relative;
    padding: 72px 0 130px;
    background: transparent !important;
    overflow: hidden;
  }

  .question-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .question-box {
    width: 760px;
    height: 300px;
    padding: 58px 76px 0;
    border-radius: 34px;
    background: url('../img/banner2-2.png') center / 100% 100% no-repeat;
    overflow: hidden;
  }

  .question-box h2 {
    margin: 0 0 42px;
    text-align: center;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 400;
    color: #fff;
  }

  .choice-row {
    display: flex;
    justify-content: center;
    gap: 56px;
  }

  .choice-btn {
    width: 270px;
    height: 64px;
    border: 0;
    border-radius: 999px;
    background: #020202;
    color: #fff;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow:
      0 0 28px rgba(225, 17, 52, .95),
      0 0 64px rgba(225, 17, 52, .55);
  }

  .question-note {
    margin: 26px 0 66px;
    text-align: center;
    color: #bd102b;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 400;
  }



  /* отключаем старые карточки ответов, если они остались в HTML */
  .answer-card,
  .answer-card-left,
  .answer-card-right {
    display: none !important;
  }
  /* =========================
    QUESTION SCREEN
  ========================= */

  .question {
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: 72px 0 120px !important;
    overflow: hidden;
  }

  .question-inner {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 !important;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* карточка вопроса */

  .question-box {
    width: 860px;
    height: 300px;
    margin: 0 auto;

    padding: 58px 76px 0;

    border-radius: 34px;
    overflow: hidden;

    background: url('../img/banner2-2.png') center / 100% 100% no-repeat;
  }

  .question-box h2 {
    margin: 0 0 42px;

    text-align: center;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 400;

    color: #fff;
  }

  .choice-row {
    display: flex;
    justify-content: center;
    gap: 56px;
  }

  .choice-btn {
    width: 270px;
    height: 64px;
    min-height: 64px;

    padding: 0;
    border: 0;
    border-radius: 999px;

    background: #020202 !important;
    color: #fff;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
      0 0 28px rgba(225, 17, 52, .95),
      0 0 64px rgba(225, 17, 52, .55);
  }

  /* подпись */

  .question-note {
    width: 860px;
    margin: 26px auto 54px;

    text-align: center;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 400;

    color: #bd102b;
  }

  /* баннер вебинара */

  .webinar-banner {
    position: relative;

    display: block;
    width: 860px;
    height: 106px;

    margin: 0 auto;
    padding: 0 !important;

    border-radius: 24px;
    overflow: hidden;

    text-decoration: none;
    background: transparent !important;
  }

  .webinar-banner > img:first-child {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;
  }

  .webinar-banner__title {
    position: absolute;
    left: 42px;
    top: 50%;
    z-index: 5;

    transform: translateY(-50%);

    font-family: 'Wix', Arial, sans-serif;
    font-size: 35px;
    line-height: .95;
    font-weight: 700;
    text-transform: uppercase;

    color: #fff;

    pointer-events: none;
  }

  .webinar-banner__arrow {
    position: absolute;
    right: 34px;
    top: 50%;
    z-index: 6;

    width: 44px !important;
    height: auto !important;

    transform: translateY(-50%);

    pointer-events: none;
  }

  /* отключаем старые боковые карточки, если они остались */

  .answer-card,
  .answer-card-left,
  .answer-card-right {
    display: none !important;
  }

  /* страховка от старых transform/left */

  .question-box,
  .question-note,
  .webinar-banner {
    left: auto !important;
    transform: none !important;
  }
  .webinar-banner span {
    font-size: 35px;
  }
  /* =========================
    FIX: убираем чёрный экран справа на 1920px
  ========================= */

  body {
    overflow-x: clip; /* вместо hidden, чтобы точно обрезать */
  }

  .hero-v2 {
    overflow-x: clip;
  }

  .hero-v2__microscope {
    right: -180px; /* уменьшил вылет */
    max-width: 700px; /* ограничил максимальную ширину */
  }

  @media (min-width: 1400px) {
    .hero-v2__microscope {
      right: -120px;
      max-width: 680px;
    }
    
    .hero-v2__day {
      right: 220px;
    }
  }

  @media (min-width: 1920px) {
    .hero-v2 {
      overflow-x: visible;
    }
    
    .hero-v2__microscope {
      right: -80px;
      max-width: 720px;
    }
    
    .hero-v2__day {
      right: 280px;
    }
  }
  .features {
    padding: 80px 0 120px;
  }

  .features-inner {
    max-width: 980px;
    margin: 0 auto;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 310px);
    gap: 16px 18px;
    justify-content: center;
  }

  .feature-card {
    width: 310px;
    height: 180px;
    padding: 26px 26px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #9f1026 0%, #7d0d1f 58%, #4d0712 100%);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
  }

  .feature-card:hover {
    background: #e11134;
    transform: translateY(-4px);
    box-shadow: 0 0 34px rgba(225, 17, 52, .55);
  }

  .feature-card__icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
  }

  .feature-card span {
    max-width: 245px;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.12;
    font-weight: 400;
    color: #fff;
  }

  .feature-card--batyrev {
    background: #bd102b;
  }

  .feature-card--batyrev .feature-card__icon--star {
    width: 78px;
    height: 78px;
    transition: transform .28s ease, filter .28s ease;
    transform-origin: center;
  }

  .feature-card--batyrev:hover .feature-card__icon--star {
    transform: scale(1.22);
    filter: drop-shadow(0 0 18px rgba(255, 0, 35, .75));
  }

  .features-wings {
    display: block;
    width: 620px;
    margin: 90px auto 0;
    opacity: .45;
  }
  .pilots {
    padding: 100px 0 80px;
  }

  .pilots-inner {
    max-width: 980px;
  }

  .pilots-title {
    margin: 0 0 36px;
    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
  }

  .pilots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .pilot-card {
    position: relative;
    min-height: 255px;
    padding: 24px 18px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #bd102b 0%, #680815 100%);
    overflow: hidden;
  }

  .pilot-photo-wrap {
    position: relative;
    width: 106px;
    height: 106px;
    margin: 0 auto 14px;
  }

  .pilot-photo {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    object-fit: cover;
  }

  .pilot-sign {
    position: absolute;
    right: -18px;
    top: -16px;
    width: 54px;
    height: 54px;
  }

  .pilot-star {
    position: absolute;
    right: -16px;
    top: -14px;
    width: 54px;
    height: 54px;
  }

  .pilot-card h3 {
    margin: 0 0 10px;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
  }

  .pilot-card p {
    margin: 0 0 18px;
    min-height: 62px;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.18;
    color: #fff;
  }

  .pilot-more {
    width: 100%;
    height: 31px;
    border: 0;
    border-radius: 999px;
    background: #020202;
    color: #bd102b;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(225, 17, 52, .9);
  }

  .pilots-video {
    margin-top: 36px;
    width: 100%;
    max-width: 660px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(90deg, #bd102b 0%, #bd102b 48%, #220306 78%, #050505 100%);
    color: #050505;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
  }

  .pilots-video span {
    padding-left: 30px;
  }

  .pilots-video b {
    width: 74px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #050505;
    background: #bd102b;
    box-shadow: 0 0 24px rgba(225, 17, 52, .9);
  }

  /* MODAL */

  .pilot-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
  }

  .pilot-modal.active {
    display: block;
  }

  .pilot-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
  }

  .pilot-modal__box {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(760px, calc(100% - 40px));
    min-height: 520px;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    background: linear-gradient(180deg, #bd102b 0%, #6c0817 100%);
    box-shadow: 0 0 50px rgba(225, 17, 52, .55);
    overflow: hidden;
    padding: 42px 360px 42px 42px;
  }

  .pilot-modal__close {
    position: absolute;
    right: 18px;
    top: 14px;
    z-index: 5;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
  }

  .pilot-modal__content {
    display: none;
  }

  .pilot-modal__content.active {
    display: block;
  }

  .pilot-modal__content h3 {
    margin: 0 0 22px;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
  }

  .pilot-modal__content p {
    margin: 0;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.25;
    color: #fff;
  }

  .pilot-modal__content img {
    position: absolute;
    right: 28px;
    bottom: 0;
    width: 300px;
    max-height: 480px;
    object-fit: contain;
  }
  /* ===== PILOTS ===== */

  .speakers{
      position:relative;
      padding:90px 0 90px;
      overflow:hidden;
  }

  .speakers .container{
      width:min(1240px, calc(100% - 80px));
      margin:0 auto;
      position:relative;
      z-index:2;
  }

  .racing-title{
      margin:0 0 42px;
      text-align:left;

      font-family:'a_LCDNova', Arial, sans-serif;
      font-size:80px;
      line-height:1;
      font-weight:400;
      text-transform:uppercase;
      color:#fff;
  }

  /* СЕТКА */

  .speaker-track{
      display:flex;
      justify-content:center;
      gap:14px;
      margin-bottom:42px;
  }

  /* КАРТОЧКА */

  .speaker{
      position:relative;

      width:290px;
      height:500px;

      padding:0 24px 28px;

      border-radius:26px;
      overflow:hidden;

      background:
          url('../img/plashka.png') center top / cover no-repeat;

      flex:none;
  }

  /* ФОТО */

  .speaker img{
      position:relative;
      display:block;

      width:150px;
      height:150px;

      margin:28px auto 22px;

      border-radius:50%;
      object-fit:cover;

      z-index:3;

      /* УБРАЛИ ЛЕВУЮ ОБВОДКУ */
      box-shadow:none;
      border:none;
      outline:none;
      background:none;
  }



  .speaker:first-child:hover::before{
      transform:scale(1.18);
  }

  /* ХОВЕР */

  .speaker{
      transition:
          background-color .35s,
          transform .35s;
  }

  .speaker:hover{
      transform:translateY(-4px);
      filter:brightness(1.08);
  }

  /* ТЕКСТ */

  .speaker h3{
      margin:0 0 14px;

      font-family:'Wix', Arial, sans-serif;
      font-size:18px;
      line-height:1;
      font-weight:800;
      text-transform:uppercase;
      color:#fff;
  }

  .speaker p{
      margin:0 0 18px;

      min-height:110px;

      font-family:'Wix', Arial, sans-serif;
      font-size:16px;
      line-height:1.28;
      color:#fff;
  }

  .speaker b{
      display:block;
      margin-bottom:30px;

      font-family:'Wix', Arial, sans-serif;
      font-size:15px;
      font-weight:500;
      color:#fff;
  }

  /* КНОПКА */

  .speaker-more{
      position:absolute;
      left:24px;
      right:24px;
      bottom:28px;

      height:44px;

      border:0;
      border-radius:999px;

      background:#050505;
      color:#e11134;

      font-family:'Wix', Arial, sans-serif;
      font-size:14px;
      font-weight:700;

      cursor:pointer;

      box-shadow:
          0 0 22px rgba(225,17,52,.92);

      transition:.3s;
  }

  .speaker-more:hover{
      box-shadow:
          0 0 36px rgba(225,17,52,1);
  }

  /* VK КНОПКА */

  .video-link{
      width:950px;
      height:72px;

      margin:0 auto;

      display:flex;
      align-items:center;
      justify-content:space-between;

      padding-left:40px;

      border-radius:999px;
      overflow:hidden;

      text-decoration:none;

      background:
          linear-gradient(
              90deg,
              #c7112f 0%,
              #af0f28 56%,
              #43060f 78%,
              #050505 100%
          );

      color:#111;

      font-family:'Wix', Arial, sans-serif;
      font-size:28px;
      font-weight:800;

      transition:.3s;
  }

  .video-link:hover{
      box-shadow:
          0 0 34px rgba(225,17,52,.75);
  }

  .video-link span{
      width:98px;
      height:72px;

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

      background:#050505;
      color:#e11134;

      font-size:36px;

      box-shadow:
          0 0 24px rgba(225,17,52,.92);
  }
  /* ===== GLOBAL BACKGROUND FIX ===== */

  html,
  body {
    width: 100%;
    min-width: 100%;
    margin: 0;
    background: #050506 !important;
    overflow-x: hidden !important;
  }

  body {
    position: relative;
    background: #050506 !important;
  }

  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 0;
    pointer-events: none;

    background-image: url('../img/bg-full.png');
    background-repeat: repeat-y;
    background-position: top center;
    background-size: cover;
    background-color: #050506;
  }

  main,
  .site-header,
  .footer {
    position: relative;
    z-index: 1;
  }

  .hero-v2,
  .marquee,
  .question,
  .features,
  .speakers,
  .program,
  .result,
  .calc,
  .videos,
  .tickets,
  .faq,
  .partners,
  .contacts,
  .section-lines {
    background: transparent !important;
  }
  /* =========================
    SPEAKERS / PILOTS
  ========================= */

  .speakers {
    position: relative;
    padding: 95px 0 90px;
    overflow: hidden;
  }

  .speakers-inner {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
  }

  .speakers .racing-title {
    margin: 0 0 44px;
    text-align: center;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 58px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
  }

  .speakers-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .speakers-viewport {
    width: 100%;
    overflow: hidden;
  }

  .speaker-track {
    display: flex;
    gap: 18px;
    transition: transform .35s ease;
    will-change: transform;
  }

  .speaker {
    position: relative;
    flex: 0 0 285px;
    height: 500px;

    padding: 0 24px 28px;

    border-radius: 26px;
    overflow: hidden;

    background: url('../img/plashka.png') center top / cover no-repeat;

    transition:
      transform .3s ease,
      filter .3s ease;
  }

  .speaker:hover {
    transform: translateY(-4px);
    filter: brightness(1.08);
  }

  .speaker-photo {
    position: relative;
    z-index: 3;

    display: block;
    width: 150px !important;
    height: 150px !important;

    margin: 28px auto 22px !important;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;

    border-radius: 50%;
    object-fit: cover;
  }

  .speaker-znam,
  .speaker-star {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 4;

    width: 62px;
    height: 62px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .speaker-znam {
    background-image: url('../img/znam.png');
  }

  .speaker-star {
    background-image: url('../img/icon-star.png');
    transition: transform .3s ease, filter .3s ease;
  }

  .speaker--batyrev:hover .speaker-star {
    transform: scale(1.2);
    filter: drop-shadow(0 0 16px rgba(225, 17, 52, .85));
  }

  .speaker h3 {
    margin: 0 0 14px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
  }

  .speaker p {
    margin: 0 0 18px;
    min-height: 110px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 400;
    color: #fff;
  }

  .speaker b {
    display: block;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
  }

  .speaker-more {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;

    height: 44px;

    border: 0;
    border-radius: 999px;

    background: #050505;
    color: #e11134;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 0 22px rgba(225, 17, 52, .92);
    transition: box-shadow .25s ease, color .25s ease;
  }

  .speaker-more:hover {
    box-shadow: 0 0 34px rgba(225, 17, 52, 1);
  }

  .speaker--muted {
    opacity: .55;
  }

  .speakers-arrow {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 50%;

    background: #050505;
    color: #e11134;

    font-size: 40px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 0 20px rgba(225, 17, 52, .65);
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .speakers-arrow:hover {
    transform: scale(1.06);
    box-shadow: 0 0 28px rgba(225, 17, 52, .9);
  }

  /* нижняя кнопка */

  .video-link {
    width: 760px;
    height: 68px;

    margin: 42px auto 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-left: 40px;

    border-radius: 999px;
    overflow: hidden;

    background:
      linear-gradient(
        90deg,
        #c7112f 0%,
        #af0f28 56%,
        #43060f 78%,
        #050505 100%
      );

    color: #050505;
    text-decoration: none;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
  }

  .video-link span {
    width: 98px;
    height: 68px;

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

    background: #050505;
    color: #e11134;

    font-size: 36px;

    box-shadow: 0 0 24px rgba(225, 17, 52, .92);
  }

  /* =========================
    SPEAKER MODAL
  ========================= */

  .speaker-modal {
    position: fixed;
    inset: 0;
    z-index: 300;

    display: none;
  }

  .speaker-modal.active {
    display: block;
  }

  .speaker-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .72);
  }

  .speaker-modal__card {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 530px;
    height: 820px;

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

    border-radius: 30px;
    overflow: visible;

    background: url('../img/plashka_modal.png') center / 100% 100% no-repeat;

    padding: 54px 205px 40px 34px;
  }

  .speaker-modal__close {
    position: absolute;
    right: 22px;
    top: 18px;
    z-index: 10;

    border: 0;
    background: transparent;

    font-size: 42px;
    line-height: 1;
    color: #050505;

    cursor: pointer;
  }

  .speaker-modal__text {
    position: relative;
    z-index: 3;

    color: #fff;
  }

  .speaker-modal__text h3 {
    margin: 0 0 22px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
  }

  .speaker-modal__text p {
    margin: 0 0 16px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.18;
    font-weight: 400;
  }

  .speaker-modal__photo {
    position: absolute;
    right: -48px;
    bottom: -58px;
    z-index: 4;

    width: 315px;
    max-width: none;
    height: auto;
  }

  .speaker-modal__znam {
    position: absolute;
    left: 34px;
    bottom: 52px;
    z-index: 5;

    width: 120px;
    height: 120px;
  }
  /* ===== SPEAKERS FINAL — LIKE MOCKUP ===== */

  .speaker::before {
    display: none !important;
    content: none !important;
  }

  .speakers {
    padding: 70px 0 85px !important;
    overflow: hidden !important;
  }

  .speakers-inner {
    width: 960px !important;
    max-width: 960px !important;
    margin: 0 auto !important;
  }

  .speakers .racing-title {
    margin: 0 0 38px !important;
    text-align: left !important;
    padding-left: 0 !important;

    font-size: 72px !important;
    line-height: 1 !important;
    letter-spacing: .02em !important;
  }

  .speakers-slider {
    width: 960px !important;
    margin: 0 auto !important;
    display: block !important;
    position: relative !important;
  }

  .speakers-arrow {
    display: none !important;
  }

  .speakers-viewport {
    width: 960px !important;
    overflow: hidden !important;
  }

  .speaker-track {
    display: flex !important;
    gap: 12px !important;
    width: max-content !important;
    transition: transform .45s ease !important;
  }

  .speaker {
    flex: 0 0 225px !important;
    width: 225px !important;
    height: 340px !important;

    padding: 0 22px 20px !important;

    border-radius: 14px !important;
    overflow: hidden !important;

    background: url('../img/plashka.png') center top / cover no-repeat !important;

    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .speaker.is-muted {
    opacity: .42 !important;
  }

  .speaker-photo {
    width: 118px !important;
    height: 118px !important;

    margin: 18px auto 14px !important;

    border-radius: 50% !important;
    object-fit: cover !important;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

  .speaker-znam,
  .speaker-star {
    position: absolute !important;
    right: 16px !important;
    top: 13px !important;

    width: 54px !important;
    height: 54px !important;

    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;

    z-index: 5 !important;
  }

  .speaker-znam {
    background-image: url('../img/znam.png') !important;
  }

  .speaker-star {
    background-image: url('../img/icon-star.png') !important;
  }

  .speaker h3 {
    margin: 0 0 14px !important;

    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #fff !important;
  }

  .speaker p {
    margin: 0 0 14px !important;
    min-height: 62px !important;
        margin-top: 75px !important
    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.17 !important;
    font-weight: 400 !important;
    color: #fff !important;
  }

  .speaker b {
    display: block !important;

    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 400 !important;
    color: #fff !important;
  }

  .speaker-more {
    position: absolute !important;
    left: 28px !important;
    right: 28px !important;
    bottom: 18px !important;

    height: 50px !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: #050505 !important;
    color: #e11134 !important;

    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;

    box-shadow: 0 0 22px rgba(225, 17, 52, .9) !important;
  }

  /* нижняя кнопка как в макете */

  .video-link {
    width: 660px !important;
    height: 50px !important;

    margin: 38px 0 0 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 0 0 0 28px !important;

    border-radius: 999px !important;
    overflow: hidden !important;

    background: linear-gradient(
      90deg,
      #bd102b 0%,
      #bd102b 48%,
      #4b0711 77%,
      #050505 100%
    ) !important;

    color: #050505 !important;
    text-decoration: none !important;

    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
  }

  .video-link span {
    width: 72px !important;
    height: 75px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #bd102b !important;
    color: #050505 !important;
  margin-right: 250px;
    font-size: 26px !important;

    box-shadow: 0 0 28px rgba(225, 17, 52, .95) !important;
  }
  .speakers-viewport {
    overflow: hidden !important;
  }

  .speaker.is-muted {
    opacity: .42 !important;
    cursor: pointer !important;
  }
  .speakers-viewport {
    cursor: pointer;
  }

  .speaker:not(.is-muted) {
    cursor: default;
  }

  .speaker.is-muted {
    cursor: pointer !important;
  }
  .marquee div {
        background-color: #bd102b !important;
  }
  /* =========================
    PROGRAM / РАСПИСАНИЕ
  ========================= */

  .program {
    position: relative;
    padding: 90px 0 120px;
  }

  .program .container.narrow,
  .program-inner {
    width: 690px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }

  .program .racing-title,
  .program-title {
    margin: 0 0 42px;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
  }

  .timeline,
  .program-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ОБЩАЯ ПЛАШКА */

  .time-card,
  .program-card {
    position: relative;
    width: 100%;
    box-sizing: border-box;

    overflow: hidden;
    border-radius: 28px;

    display: grid;
    grid-template-columns: 200px 1fr;

    color: #fff;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% 100% !important;
  }

  .time-card b,
  .program-time {
    display: block;
    padding: 20px 0 0 24px;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
  }

  .time-card span,
  .program-content {
    display: block;
    padding: 20px 24px 0 0;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
    color: #fff;
  }

  /* КОРОТКИЕ ПЛАШКИ */

  .time-card:not(.big),
  .program-card--small,
  .program-card--plain {
    min-height: 64px;
    align-items: center;
    background-image: url('../img/banner-6.png') !important;
  }

  .time-card:not(.big) b,
  .program-card--small .program-time,
  .program-card--plain .program-time {
    padding-top: 0;
    align-self: center;
  }

  .time-card:not(.big) span,
  .program-card--small .program-content,
  .program-card--plain .program-content {
    padding-top: 0;
    align-self: center;
  }

  /* 10:15–10:30 ОТКРЫТИЕ */

  .time-card.big:nth-of-type(2),
  .program-card--open {
    min-height: 215px;
    background-image: url('../img/banner-7.png') !important;
  }

  .time-card.big:nth-of-type(2) span,
  .program-card--open .program-content {
    padding-top: 22px;
  }

  .time-card.big:nth-of-type(2) > img,
  .program-card--open .program-speaker-row img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
  }

  .time-card.big:nth-of-type(2) > img {
    position: absolute;
    left: 255px;
    bottom: 28px;
  }

  .time-card.big:nth-of-type(2) small {
    position: absolute;
    left: 340px;
    bottom: 34px;
    width: 300px;

    color: #050505;
    font-size: 11px;
    line-height: 1.15;
    font-family: 'Wix', Arial, sans-serif;
  }

  .program-card--open .program-speaker-row {
    position: absolute;
    left: 250px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 14px;
  }

  .program-card--open .program-speaker-row p {
    width: 310px;
    margin: 0;

    color: #050505;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 11px;
    line-height: 1.15;
  }

  /* 10:30–13:15 БИЗНЕС-КЕЙСЫ */

  .time-card.big:nth-of-type(3),
  .program-card--cases {
    min-height: 305px;
    background-image: url('../img/banner-5.png') !important;
  }

  .time-card.big:nth-of-type(3) span,
  .program-card--cases .program-content {
    padding-top: 24px;
  }

  .time-card.big:nth-of-type(3) span {
    max-width: 420px;
  }

  .time-card.big:nth-of-type(3) small {
    display: none;
  }

  .mini-faces,
  .program-faces {
    position: absolute;
    left: 255px;
    bottom: 22px;

    display: flex;
    align-items: flex-start;
    gap: 30px;
  }

  .mini-faces img,
  .program-faces img {
    display: block;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
  }

  .program-faces div {
    width: 90px;
    text-align: center;
  }

  .program-faces span {
    display: block;
    margin-top: 6px;

    color: #050505;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 11px;
    line-height: 1.1;
  }

  .mini-faces img:nth-child(1) {
    content: url('../img/speaker-3.png');
  }

  .mini-faces img:nth-child(2) {
    content: url('../img/speaker-4.png');
  }

  .mini-faces img:nth-child(3) {
    content: url('../img/speaker-5.png');
  }

  /* 13:30–15:00 РАБОЧАЯ СЕССИЯ */

  .time-card:nth-of-type(5),
  .program-card--work {
    min-height: 365px;
    background-image: url('../img/banner-8.png') !important;
  }

  .time-card:nth-of-type(5) span,
  .program-card--work .program-content {
    padding-top: 24px;
  }

  .program-card--work .program-main-text {
    margin: 0 0 22px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.15;
    color: #fff;
  }

  .program-points {
    margin: 0;
    padding: 0;
    list-style: none;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 19px;
    line-height: 1.15;
    color: #fff;
  }

  .program-points li::before {
    content: "- ";
  }

  .program-note {
    position: absolute;
    left: 200px;
    right: 28px;
    bottom: 26px;

    margin: 0;

    color: #050505;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 11px;
    line-height: 1.16;
  }

  /* 15:30–18:30 ФИНАЛЬНОЕ УСКОРЕНИЕ */

  .time-card.big:nth-of-type(7),
  .program-card--final {
    min-height: 250px;
    background-image: url('../img/banner-5.png') !important;
  }

  .time-card.big:nth-of-type(7) > img,
  .program-final-speaker {
    position: absolute;
    right: 48px;
    bottom: 28px;

    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
  }

  .time-card.big:nth-of-type(7) span,
  .program-card--final .program-content {
    padding-top: 24px;
  }

  /* ОБЩИЕ ТЕКСТЫ ДЛЯ НОВОЙ ВЕРСТКИ */

  .program-main-text {
    margin: 0;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
    color: #fff;
  }

  .program-description {
    margin-top: 22px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.15;
    color: #fff;
  }

  /* КНОПКИ ПОД РАСПИСАНИЕМ */

  .program-actions,
  .center-actions {
    margin-top: 44px;
    display: flex;
    justify-content: center;
    gap: 22px;
  }

  /* АДАПТИВ */

  @media (max-width: 768px) {
    .program .container.narrow,
    .program-inner {
      width: calc(100% - 28px);
    }

    .program .racing-title,
    .program-title {
      font-size: 34px;
    }

    .time-card,
    .program-card {
      grid-template-columns: 1fr;
      padding: 18px;
    }

    .time-card b,
    .program-time,
    .time-card span,
    .program-content {
      padding: 0;
    }

    .time-card b,
    .program-time {
      margin-bottom: 10px;
      font-size: 24px;
    }

    .time-card.big:nth-of-type(2) > img,
    .time-card.big:nth-of-type(7) > img,
    .program-final-speaker {
      position: static;
      margin-top: 16px;
    }

    .time-card.big:nth-of-type(2) small,
    .program-note,
    .mini-faces,
    .program-faces,
    .program-card--open .program-speaker-row {
      position: static;
      margin-top: 16px;
    }
  }
  /* ===== PROGRAM BACKGROUNDS FINAL ===== */

  .program .timeline > .time-card {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 100% 100% !important;
  }
  /* ===== ФОНЫ ПЛАШЕК ПРОГРАММЫ ===== */

  .program .program-list > .program-card{
      background-repeat:no-repeat !important;
      background-position:center center !important;
      background-size:100% 100% !important;
  }

  /* 1 */
  .program .program-list > .program-card:nth-child(1){
      background-image:url('../img/plashka1.png') !important;
  }

  /* 2 */
  .program .program-list > .program-card:nth-child(2){
      background-image:url('../img/plashka2.png') !important;
  }

  /* 3 */
  .program .program-list > .program-card:nth-child(3){
      background-image:url('../img/plashka3.png') !important;
  }

  /* 4 */
  .program .program-list > .program-card:nth-child(4){
      background-image:url('../img/plashka4.png') !important;
  }

  /* 5 */
  .program .program-list > .program-card:nth-child(5){
      background-image:url('../img/plashka5.png') !important;
  }

  /* 6 */
  .program .program-list > .program-card:nth-child(6){
      background-image:url('../img/plashka6.png') !important;
  }

  /* 7 */
  .program .program-list > .program-card:nth-child(7){
      background-image:url('../img/plashka7.png') !important;
  }

  /* 8 */
  .program .program-list > .program-card:nth-child(8){
      background-image:url('../img/plashka8.png') !important;
  }

  /* 9 */
  .program .program-list > .program-card:nth-child(9){
      background-image:url('../img/plashka9.png') !important;
  }
  /* =========================
    LAUNCH SYSTEM
  ========================= */

  .launch-system {
    position: relative;
    padding: 95px 0 70px;
    overflow: hidden;
  }

  .launch-system .result-grid {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 38px;
    align-items: center;
  }

  .launch-copy {
    position: relative;
    z-index: 2;
  }

  .launch-copy .racing-title {
    margin: 0 0 34px;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 43px;
    line-height: 1.08;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
  }

  .launch-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .launch-list li {
    margin: 0 0 18px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.18;
    font-weight: 400;
    color: #fff;
  }

  .launch-book {
    position: relative;
    z-index: 2;

    width: 260px;
    max-width: 100%;
    height: auto;

    display: block;

    transform: rotate(-8deg);
    transition:
      transform .35s ease,
      filter .35s ease;
  }

  .launch-book:hover {
    transform: rotate(-8deg) scale(1.07);
    filter: drop-shadow(0 0 24px rgba(225, 17, 52, .55));
  }

  /* крылья между системой и калькулятором, если вставишь img */
  .launch-wings {
    display: block;
    width: 520px;
    max-width: 80%;
    margin: 70px auto 0;
    opacity: .42;
  }

  /* адаптив */

  @media (max-width: 768px) {
    .launch-system {
      padding: 70px 0 50px;
    }

    .launch-system .result-grid {
      grid-template-columns: 1fr;
      gap: 34px;
      text-align: left;
    }

    .launch-copy .racing-title {
      font-size: 34px;
    }

    .launch-book {
      width: 240px;
      margin: 0 auto;
    }
  }
  .launch-book-wrap {
    width: 500px !important;
    height: auto;
    display: block;
    margin-left: auto;
    transform: rotate(-8deg);
    transition: transform .35s ease, filter .35s ease;
    cursor: pointer;
    transform-origin: center center;
  }

  .launch-book-wrap:hover {
    transform: rotate(-8deg) scale(1.12) !important;
    filter: drop-shadow(0 0 30px rgba(255, 40, 70, .65));
  }

  .launch-book {
    width: 100%;
    height: auto;
    display: block;
    transform: none !important;
    transition: none !important;
  }
  .race-video-slider {
    width: 760px;
    max-width: 100%;
    margin-top: 42px;
  }

  .race-video-slider__viewport {
    width: 100%;
    overflow: hidden;
  }

  .race-video-slider__track {
    display: flex;
    gap: 18px;
    width: max-content;
    transition: transform .45s ease;
  }

  .race-video-slide {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    height: 170px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    transition: opacity .35s ease, transform .35s ease;
  }

  .race-video-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .race-video-slide__cover {
    display: none;
  }

  .race-video-slide.is-side {
    opacity: .42;
    cursor: pointer;
  }

  .race-video-slide.is-side .race-video-slide__cover {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 20;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  /* =========================
    TICKETS / ROUTES
  ========================= */

  .tickets {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
  }

  .tickets-inner {
    width: 760px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }

  .tickets-head {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 42px;
  }

  .tickets-head .racing-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    color: #fff;
  }

  .price-badge {
    position: absolute;
    right: 20px;
    top: 15px;

    width: 250px;
    min-height: 76px;
    padding: 16px 24px;

    border-radius: 12px;
    background: #060606;
    transform: rotate(-13deg);
    box-shadow: 0 0 22px rgba(225, 17, 52, .4);
  }

  .price-badge span {
    display: block;
    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
    color: #d5102f;
    text-transform: uppercase;
  }

  .price-badge small {
    display: block;
    margin-top: 4px;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.05;
    color: #d5102f;
    text-transform: uppercase;
  }

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

  .ticket-card {
    position: relative;
    min-height: 310px;
    padding: 34px 28px 28px;

    border-radius: 22px;
    overflow: hidden;

    background:
      linear-gradient(180deg, rgba(202, 18, 45, .96) 0%, rgba(93, 8, 20, .98) 100%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  }

  .ticket-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 82px;
    height: 90px;

    
    pointer-events: none;
  }

  .ticket-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 8px;
    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 400;
    color: #030303;
    text-transform: uppercase;
  }

  .ticket-price {
    position: relative;
    z-index: 2;

    margin-bottom: 72px;
    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
    color: #fff;
  }

  .ticket-card ul {
    position: relative;
    z-index: 2;

    margin: 0 0 28px;
    padding: 0;
    list-style: none;
  }

  .ticket-card li {
    position: relative;
    padding-left: 22px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
  }

  .ticket-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    width: 14px;
    height: 14px;
    border-radius: 50%;

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

    background: #fff;
    color: #c1112e;
    font-size: 10px;
    font-weight: 700;
  }

  .ticket-benefit {
    position: relative;
    z-index: 2;

    margin-top: -12px;
    margin-bottom: 20px;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 24px;
    color: #d5102f;
    text-transform: uppercase;
  }

  .ticket-btn {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 3;

    height: 42px;
    border: 0;
    border-radius: 999px;

    background: #030303;
    color: #d5102f;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    box-shadow: 0 0 22px rgba(225, 17, 52, .55);
  }

  .ticket-card--wide {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .ticket-card--wide .ticket-btn {
    max-width: 100%;
  }

  .tickets-note {
    margin: 18px 0 0;
    font-family: 'Wix', Arial, sans-serif;
    font-size: 13px;
    color: #fff;
  }

  /* =========================
    PAYMENT MODAL STEP 1
  ========================= */

  .payment-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;
  }

  .payment-modal.active {
    display: flex;
  }

  .payment-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
  }

  .payment-modal__box {
    position: relative;
    z-index: 2;

    width: 760px;
    max-width: calc(100% - 40px);
    padding: 34px 36px 36px;

    border-radius: 26px;
    background:
      radial-gradient(circle at left bottom, rgba(130, 12, 28, .78), transparent 45%),
      linear-gradient(135deg, #21050a 0%, #7d0f21 100%);
    box-shadow: 0 0 36px rgba(0,0,0,.5);
  }

  .payment-modal__close {
    position: absolute;
    right: 18px;
    top: 14px;

    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
  }

  .ticket-form__fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .ticket-form input[type="text"],
  .ticket-form input[type="tel"],
  .ticket-form input[type="email"] {
    width: 100%;
    height: 42px;
    padding: 0 18px;

    border-radius: 999px;
    border: 1px solid rgba(225,17,52,.55);

    background: rgba(0,0,0,.55);
    color: #fff;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 14px;
  }

  .ticket-form input::placeholder {
    color: rgba(255,255,255,.45);
  }

  .ticket-form__agree {
    display: flex;
    gap: 12px;
    margin: 18px 0 22px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 11px;
    line-height: 1.2;
    color: rgba(255,255,255,.62);
  }

  .ticket-form__agree input {
    flex: 0 0 auto;
  }

  .ticket-form__submit {
    width: 100%;
    height: 48px;

    border: 0;
    border-radius: 999px;

    background: #030303;
    color: #fff;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;
    box-shadow: 0 0 25px rgba(225,17,52,.7);
  }
  /* =========================
    PAYMENT METHODS
  ========================= */

  .payment-method-box {
    width: 860px;
  }

  .payment-method-title {
    margin: 0 0 32px;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
  }

  .payment-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .payment-method-card {
    position: relative;
    min-height: 300px;
    padding: 28px 22px 24px;

    border-radius: 22px;
    overflow: hidden;

    background:
      linear-gradient(180deg, rgba(201, 18, 45, .96) 0%, rgba(87, 8, 19, .98) 100%);
  }

  .payment-method-card h3 {
    margin: 0 0 26px;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 400;
    text-transform: uppercase;
    color: #030303;
  }

  .payment-method-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .payment-method-card li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 20px;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
  }

  .payment-method-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;

    width: 13px;
    height: 13px;
    border-radius: 50%;

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

    background: #fff;
    color: #c1112e;
    font-size: 9px;
    font-weight: 700;
  }

  .payment-method-btn {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;

    height: 42px;

    border: 0;
    border-radius: 999px;

    background: #030303;
    color: #d5102f;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    box-shadow: 0 0 22px rgba(225, 17, 52, .55);
  }
  /* =========================
    FINAL PAYMENT MODALS
  ========================= */

  .final-payment-box {
    width: 560px;
    min-height: 260px;
  }

  .final-payment-title {
    margin: 0 0 28px;

    font-family: 'a_LCDNova', Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
  }

  .final-payment-form {
    width: 100%;
  }

  .file-upload {
    display: block;
    width: 100%;
    margin-bottom: 18px;
  }

  .file-upload input {
    display: none;
  }

  .file-upload span {
    width: 100%;
    height: 48px;

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

    border-radius: 999px;
    background: #030303;
    color: #fff;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;
    box-shadow: 0 0 25px rgba(225,17,52,.7);
  }

  .final-payment-submit {
    width: 100%;
    height: 48px;

    border: 0;
    border-radius: 999px;

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

    background: #030303;
    color: #fff;
    text-decoration: none;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;
    box-shadow: 0 0 25px rgba(225,17,52,.7);
  }

  .payment-after-text {
    margin: 22px 0 0;
    padding: 22px 24px;

    border-radius: 14px;
    background: rgba(0,0,0,.72);

    font-family: 'Wix', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    color: #fff;
  }

  .payment-after-text b {
    color: #fff;
  }

  .success-ticket-box {
    width: 520px;
    padding: 46px 40px;
    background: #c1112e;
  }

  .success-ticket-text {
    font-family: 'Wix', Arial, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    color: #fff;
  }
  .ticket-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 22px;
    max-width: 100%;

    font-family: 'Wix', Arial, sans-serif;
    font-size: 11px;
    line-height: 1.25;
    color: rgba(255,255,255,.65);
  }

  .ticket-form__agree input {
    position: static;
    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;
    flex: 0 0 18px;

    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(225,17,52,.8);
    background: transparent;
    cursor: pointer;
  }

  .ticket-form__agree input:checked {
    background: #d5102f;
    box-shadow: inset 0 0 0 4px #180207;
  }

  .ticket-form__agree span {
    display: block;
    max-width: 560px;
  }
  /* ===== FIX TICKET MODAL FORM ===== */

  .payment-modal__box--form {
    width: 1040px !important;
    max-width: calc(100% - 80px) !important;
    padding: 48px 56px 50px !important;
    border-radius: 32px !important;

    background:
      radial-gradient(circle at left bottom, rgba(192, 16, 42, .86), transparent 48%),
      linear-gradient(135deg, #6f0b1a 0%, #3a050d 100%) !important;
  }

  .ticket-form__fields {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 18px !important;
    margin-bottom: 24px !important;
  }

  .ticket-form input[type="text"],
  .ticket-form input[type="tel"],
  .ticket-form input[type="email"] {
    width: 100% !important;
    height: 52px !important;
    padding: 0 24px !important;

    border-radius: 999px !important;
    border: 1px solid rgba(225, 17, 52, .9) !important;

    background: rgba(0, 0, 0, .45) !important;
    color: #fff !important;

    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 16px !important;
    outline: none !important;
  }

  .ticket-form input::placeholder {
    color: rgba(255,255,255,.48) !important;
  }

  .ticket-form__agree {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;

    width: 100% !important;
    max-width: 620px !important;
    margin: 0 0 42px !important;

    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    color: rgba(255,255,255,.62) !important;
    cursor: pointer !important;
  }

  .ticket-form__agree input {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .ticket-form__checkbox {
    flex: 0 0 20px !important;
    width: 20px !important;
    height: 20px !important;

    border-radius: 50% !important;
    border: 1px solid rgba(225, 17, 52, .9) !important;
    background: rgba(0,0,0,.25) !important;
    box-sizing: border-box !important;
  }

  .ticket-form__agree input:checked + .ticket-form__checkbox {
    background: #d5102f !important;
    box-shadow: inset 0 0 0 5px #180207 !important;
  }

  .ticket-form__agree-text {
    display: block !important;
    max-width: 560px !important;
  }

  .ticket-form__submit {
    width: 100% !important;
    height: 64px !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: #030303 !important;
    color: #fff !important;

    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 19px !important;
    font-weight: 800 !important;

    cursor: pointer !important;
    box-shadow: 0 0 30px rgba(225,17,52,.68) !important;
  }

  .payment-modal__close {
    right: 26px !important;
    top: 22px !important;
    color: #fff !important;
    z-index: 5 !important;
  }

  @media (max-width: 900px) {
    .payment-modal__box--form {
      max-width: calc(100% - 32px) !important;
      padding: 34px 22px 30px !important;
    }

    .ticket-form__fields {
      grid-template-columns: 1fr !important;
    }

    .ticket-form__agree {
      max-width: 100% !important;
    }
  }
  /* =========================================
    TICKETS FINAL ZMIR
  ========================================= */

  #tickets{
      position:relative;
      padding:70px 0 45px;
  }

  #tickets .tickets-inner{
      width:100%;
      max-width:1120px;
      margin:0 auto;
  }

  /* ===== HEAD ===== */

  #tickets .tickets-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      margin-bottom:38px;
  }

  #tickets .racing-title{
      margin:0;
  }

  /* ===== 1 AUGUST ===== */

  #tickets .price-badge{
      width:320px;
      height:128px;
      border-radius:20px;
      background:#050505;
      border:2px solid #ff214e;
      transform:rotate(-13deg);
      padding:18px 24px;
      box-sizing:border-box;

      box-shadow:
          0 0 22px rgba(255,0,70,.35);
  }

  #tickets .price-badge span{
      display:block;
      font-size:54px;
      line-height:1;
      color:#ff214e;
  }

  #tickets .price-badge small{
      display:block;
      margin-top:8px;
      color:#ff214e;
      font-size:23px;
      line-height:1.08;
  }

  /* ===== GRID ===== */

  #tickets .ticket-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:26px;
  }

  /* ===== CARD ===== */

  #tickets .ticket-card{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      box-sizing:border-box;

      min-height:540px;
      padding:46px 42px 34px;

      background:
          url('../img/Podlozhka_small.png')
          center center /
          100% 100%
          no-repeat;

      box-shadow:
          0 16px 38px rgba(0,0,0,.35),
          0 0 40px rgba(255,0,70,.15);
  }

  /* ===== WIDE ===== */

  #tickets .ticket-card--wide{
      grid-column:1/-1;
      min-height:540px;

      background:
          url('../img/podlozhka_big.png')
          center center /
          100% 100%
          no-repeat;
  }

  /* ===== TITLE ===== */

  #tickets .ticket-card h3{
      margin:0 0 18px;
      color:#000;
      font-size:56px;
      line-height:.92;
      letter-spacing:-0.02em;
  }

  /* ===== PRICE ===== */

  #tickets .ticket-price{
      margin:0;
      font-size:60px;
      line-height:1;
      color:#fff;
  }

  /* ===== HEART ===== */

  #tickets .ticket-heart{
      position:absolute;
      left:50%;
      top:182px;

      transform:translateX(-50%);
      width:86px;
      height:auto;

      z-index:5;
      display:block;
      pointer-events:none;
  }

  #tickets .ticket-heart--wide{
      top:172px;
  }

  /* ===== LIST ===== */

  #tickets .ticket-card ul{
      position:absolute;
      left:42px;
      right:42px;
      bottom:112px;

      margin:0;
      padding:0;
      list-style:none;
  }

  #tickets .ticket-card li{
      position:relative;
      padding-left:28px;
      margin-bottom:12px;

      color:#fff;
      font-size:22px;
      line-height:1.18;
  }

  #tickets .ticket-card li:last-child{
      margin-bottom:0;
  }

  #tickets .ticket-card li::before{
      content:"✔";
      position:absolute;
      left:0;
      top:0;

      color:#fff;
      font-size:16px;
  }

  /* ===== WIDE LIST ===== */

  #tickets .ticket-card--wide ul{
      bottom:114px;
  }

  /* ===== BENEFIT ===== */

  #tickets .ticket-benefit{
      position:absolute;
      left:42px;
      bottom:160px;

      color:#ff214e;
      font-size:34px;
      text-transform:uppercase;
  }

  /* ===== BUTTON ===== */

  #tickets .ticket-btn{
      position:absolute;
      left:42px;
      right:42px;
      bottom:34px;

      height:60px;
      border:none;
      border-radius:999px;

      background:#000;
      color:#ff214e;

      font-size:18px;
      cursor:pointer;

      box-shadow:
          0 0 22px rgba(255,0,70,.45);

      transition:.25s;
  }

  #tickets .ticket-btn:hover{
      transform:translateY(-2px);
      box-shadow:
          0 0 28px rgba(255,0,70,.65);
  }

  /* ===== NOTE ===== */

  #tickets .tickets-note{
      margin-top:30px;
      text-align:center;
      color:#fff;
      font-size:22px;
  }

  /* ===== MOBILE ===== */

  @media (max-width:900px){

      #tickets .tickets-head{
          flex-direction:column;
          gap:24px;
      }

      #tickets .price-badge{
          transform:none;
          width:100%;
          max-width:320px;
      }

      #tickets .ticket-grid{
          grid-template-columns:1fr;
      }

      #tickets .ticket-card--wide{
          grid-column:auto;
      }

      #tickets .ticket-card{
          min-height:auto;
          padding:36px 30px 120px;
      }

      #tickets .ticket-heart{
          top:155px;
          width:72px;
      }

      #tickets .ticket-card ul{
          position:relative;
          left:auto;
          right:auto;
          bottom:auto;
          margin-top:80px;
      }

      #tickets .ticket-benefit{
          position:relative;
          left:auto;
          bottom:auto;
          margin-top:16px;
      }

      #tickets .ticket-btn{
          left:30px;
          right:30px;
      }
  }
  #tickets .price-badge {
    z-index: 101;
        height: 142px;
  }
  .speaker-modal__photo {
      position: absolute;
      right: -32px;
      bottom: 9px;
      z-index: 4;
      width: 258px;
      max-width: none;
      height: auto;
  }
  .gc-hidden-widgets {
    position: fixed;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .gc-payment-box {
    width: 560px !important;
    max-width: calc(100% - 40px) !important;
    min-height: 260px !important;
    background: #fff !important;
    color: #111 !important;
  }

  .gc-widget-wrap {
    position: relative;
    min-height: 180px;
  }

  .gc-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    transition: opacity .3s;
  }

  .gc-loader.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .gc-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid #e4e8f4;
    border-top-color: #c31a33;
    border-radius: 50%;
    animation: gcSpin .8s linear infinite;
  }

  @keyframes gcSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .gc-loader-text {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
  }

  .gc-widget-inner {
    opacity: 0;
    transition: opacity .4s;
  }

  .gc-widget-inner.loaded {
    opacity: 1;
  }
  .file-upload__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .file-upload__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 24px;
    border-radius: 999px;
    background: #bd102b;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
  }

  .file-upload__name {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.35;
    color: #111;
    text-align: center;
    word-break: break-word;
  }
  /* =========================================
    FINAL ALIGN: ALL SECTIONS TO 1120PX
  ========================================= */

  :root {
    --work-width: 1120px;
    --work-padding: 40px;
  }

  .container,
  .hero-container,
  .header-inner,
  .question-inner,
  .features-inner,
  .lead-grid,
  .speakers .container,
  .program .container,
  .result .container,
  .calc .container,
  .videos .container,
  .tickets-inner,
  .faq .container,
  .partners .container,
  .contacts-grid,
  .footer-inner {
    width: min(var(--work-width), calc(100% - var(--work-padding))) !important;
    max-width: var(--work-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* HERO */
  .hero-v2__content {
    margin-left: 0 !important;
  }

  .hero-v2__actions {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 328px 1fr !important;
  }

  /* QUESTION */
  .question-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .question-box {
    width: 100% !important;
    max-width: 100% !important;
  }

  .question-note {
    width: 100% !important;
    text-align: center !important;
  }

  .webinar-banner {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* TRACK */
  .split {
    width: 100% !important;
    grid-template-columns: 1fr 430px !important;
  }

  /* FEATURES */
  .features-inner {
    width: min(var(--work-width), calc(100% - var(--work-padding))) !important;
    max-width: var(--work-width) !important;
  }

  .features-grid {
    width: 100% !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
  }

  .feature-card {
    width: 100% !important;
  }

  /* LEAD */
  .lead-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  .form-row {
    width: 100% !important;
  }

  /* SPEAKERS */
  .speaker-track {
    width: 100% !important;
  }

  /* PROGRAM */
  .timeline {
    width: 100% !important;
  }

  .time-card {
    width: 100% !important;
  }

  /* RESULT / CALC / VIDEOS */
  .result-grid,
  .calc-box,
  .video-cards {
    width: 100% !important;
  }

  /* TICKETS */
  #tickets .tickets-inner,
  .tickets-inner {
    width: min(var(--work-width), calc(100% - var(--work-padding))) !important;
    max-width: var(--work-width) !important;
  }

  .ticket-grid {
    width: 100% !important;
  }

  /* FAQ */
  .faq-list {
    width: 100% !important;
  }

  /* PARTNERS */
  .partners-grid,
  .partner-logos {
    width: 100% !important;
  }

  /* CONTACTS */
  .contacts-grid {
    grid-template-columns: 1fr 1.3fr !important;
    gap: 70px !important;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    :root {
      --work-padding: 32px;
    }

    .hero-v2__actions {
      grid-template-columns: 1fr !important;
      height: auto !important;
    }

    .split,
    .features-grid,
    .ticket-grid,
    .contacts-grid,
    .form-row {
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 520px) {
    :root {
      --work-padding: 24px;
    }
  }
  /* ===== FEATURES FINAL FIX ===== */

  .features {
    min-height: 720px !important;
    padding: 80px 0 70px !important;
  }

  .features-inner {
    position: relative !important;
    width: min(1120px, calc(100% - 40px)) !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
  }

  .features-grid {
    width: 720px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 220px) !important;
    gap: 10px 12px !important;
    margin: 0 auto !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .feature-card {
    width: 220px !important;
    height: 136px !important;
    min-height: 136px !important;
    padding: 18px 18px 16px !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: linear-gradient(135deg, #a40c23, #4a0710) !important;
  }

  .feature-card span {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
    font-weight: 600 !important;
  }

  .feature-card__icon {
    width: 30px !imtant;
    height: 30px !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  .feature-card--batyrev {
    background: #d71134 !important;
  }

  .feature-card--batyrev .feature-card__icon {
    width: 58px !important;
    height: 58px !important;
  }

  .features-wings {
    display: block !important;
    width: 480px !important;
    max-width: 480px !important;
    margin: 70px auto 0 !important;
    opacity: .75 !important;
    position: relative !important;
    z-index: 1 !important;
  }
  /* ===== FEATURES BIG FINAL ===== */
  /* ===== VIDEOS FIX ===== */

  .videos {
      padding: 90px 0 110px !important;
  }

  .videos .container,
  .videos-inner {
      width: min(1120px, calc(100% - 40px)) !important;
      max-width: 1120px !important;
      margin: 0 auto !important;
  }

  .video-cards {
      width: 100% !important;
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 24px !important;
      margin-top: 45px !important;
  }

  .video-cards a {
      width: 100% !important;
      height: 230px !important;
      border-radius: 22px !important;
      overflow: hidden !important;
      display: block !important;
      padding: 0 !important;
  }

  .video-cards img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      display: block !important;
  }
  .features-grid {
      width: 1120px !important;
      max-width: 100% !important;
      display: grid !important;
      grid-template-columns: repeat(3, 350px) !important;
      gap: 18px !important;
      justify-content: center !important;
      margin: 0 auto !important;
  }

  .feature-card {
      width: 350px !important;
      height: 190px !important;
      min-height: 190px !important;
      padding: 24px !important;
      border-radius: 22px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
  }

  .feature-card span {
      font-size: 19px !important;
      line-height: 1.14 !important;
      font-weight: 500 !important;
  }

  .feature-card__icon {
      width: 38px !important;
      height: 38px !important;
      margin-bottom: 10px !important;
  }

  /* Батырев */
  .feature-card--batyrev {
      width: 350px !important;
      height: 190px !important;
  }

  .feature-card--batyrev .feature-card__icon {
      width: 72px !important;
      height: 72px !important;
  }
  /* ===== VIDEOS FINAL OVERRIDE ===== */

  .videos .container {
      width: min(1120px, calc(100% - 40px)) !important;
      max-width: 1120px !important;
      margin: 0 auto !important;
  }

  .video-cards,
  .video-slider,
  .video-track,
  .videos-list {
      width: 100% !important;
      max-width: 100% !important;
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 22px !important;
      overflow: visible !important;
  }

  .video-cards a,
  .video-slider a,
  .video-track a,
  .videos-list a,
  .video-card {
      width: 100% !important;
      max-width: none !important;
      height: 210px !important;
      min-height: 210px !important;
      border-radius: 14px !important;
      overflow: hidden !important;
      opacity: 1 !important;
      transform: none !important;
      padding: 0 !important;
  }

  .video-cards img,
  .video-slider img,
  .video-track img,
  .videos-list img,
  .video-card img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
  }
  /* ===== VIDEO SLIDER 1120 FIX ===== */

  .videos .videos-inner {
      width: min(1120px, calc(100% - 40px)) !important;
      max-width: 1120px !important;
      margin: 0 auto !important;
  }

  .race-video-slider {
      width: 100% !important;
      max-width: 1120px !important;
      margin: 42px auto 0 !important;
  }

  .race-video-slider__viewport {
      width: 100% !important;
      overflow: hidden !important;
  }

  .race-video-slider__track {
      display: flex !important;
      gap: 22px !important;
      align-items: stretch !important;
      will-change: transform;
  }

  .race-video-slide {
      flex: 0 0 calc((100% - 44px) / 3) !important;
      width: calc((100% - 44px) / 3) !important;
      min-width: calc((100% - 44px) / 3) !important;
      height: 235px !important;
      border-radius: 18px !important;
      overflow: hidden !important;
      opacity: 1 !important;
  }

  .race-video-slide iframe,
  .race-video-slide img,
  .race-video-slide video {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      border-radius: 18px !important;
  }

  /* убрать затемнение соседних */
  .race-video-slide.is-muted,
  .race-video-slide[aria-hidden="true"] {
      opacity: .92 !important;
      filter: none !important;
  }
  /* ===== VIDEO SLIDER BIG + OVERFLOW ===== */

  .videos .videos-inner{
      width:min(1120px,calc(100% - 40px)) !important;
      max-width:1120px !important;
      margin:0 auto !important;
      overflow:visible !important;
  }

  .race-video-slider{
      width:100% !important;
      max-width:none !important;
      position:relative !important;
      overflow:visible !important;
      margin-top:42px !important;
  }

  .race-video-slider__viewport{
      width:100% !important;
      overflow:visible !important;
  }

  .race-video-slider__track{
      display:flex !important;
      gap:26px !important;
      align-items:stretch !important;

  }

  /* КРУПНЕЕ */
  .race-video-slide{
      flex:0 0 460px !important;
      width:460px !important;
      min-width:460px !important;
      height:260px !important;
      border-radius:18px !important;
      overflow:hidden !important;
      transition:.35s !important;
  }

  /* активный */
  .race-video-slide.is-active{
      opacity:1 !important;
      transform:scale(1) !important;
      z-index:3 !important;
  }

  /* соседние затемненные */
  .race-video-slide:not(.is-active){
      opacity:.45 !important;
      transform:scale(.92) !important;
      z-index:1 !important;
  }

  .race-video-slide img,
  .race-video-slide iframe{
      width:100% !important;
      height:100% !important;
      object-fit:cover !important;
  }
  .race-video-slide.is-video-active {
    opacity: 1 !important;
    filter: brightness(1) !important;
    transform: scale(1) !important;
    z-index: 3 !important;
  }

  .race-video-slide.is-video-muted {
    opacity: .42 !important;
    filter: brightness(.55) !important;
    transform: scale(.92) !important;
    z-index: 1 !important;
  }
  /* ===== SPEAKERS BIG SLIDER ===== */

  .speakers .container,
  .speakers-inner{
      width:min(1120px,calc(100% - 40px)) !important;
      max-width:1120px !important;
      margin:0 auto !important;
      overflow:visible !important;
  }

  .speaker-slider,
  .speaker-track-wrap{
      width:100% !important;
      overflow:visible !important;
      position:relative !important;
  }

  .speaker-track{
      display:flex !important;
      gap:28px !important;
      align-items:stretch !important;
      overflow:visible !important;
      padding:0 140px !important;
      will-change:transform;
  }

  /* крупнее */
  .speaker{
      flex:0 0 360px !important;
      width:360px !important;
      min-width:360px !important;
      min-height:560px !important;
      border-radius:26px !important;
      transition:.35s !important;
      overflow:hidden !important;
  }

  /* 3 активных */
  .speaker.is-speaker-active{
      opacity:1 !important;
      filter:brightness(1) !important;
      transform:scale(1) !important;
      z-index:3 !important;
  }

  /* края */
  .speaker.is-speaker-muted{
      opacity:.35 !important;
      filter:brightness(.55) !important;
      transform:scale(.9) !important;
      z-index:1 !important;
  }
  .speaker.is-speaker-active {
    opacity: 1 !important;
    filter: brightness(1) !important;
    transform: scale(1) !important;
    z-index: 3 !important;
  }

  .speaker.is-speaker-muted {
    opacity: .35 !important;
    filter: brightness(.55) !important;
    transform: scale(.9) !important;
    z-index: 1 !important;
  }
  /* ===== SPEAKERS SLIDER NORMAL 3 ACTIVE ===== */

  .speaker-track {
    display: flex !important;
    gap: 24px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .speaker {
    flex: 0 0 calc((1120px - 48px) / 3) !important;
    width: calc((1120px - 48px) / 3) !important;
    min-width: calc((1120px - 48px) / 3) !important;
    min-height: 500px !important;
    border-radius: 22px !important;
  }

  .speaker.is-speaker-active {
    opacity: 1 !important;
    filter: brightness(1) !important;
    transform: scale(1) !important;
    z-index: 3 !important;
  }

  .speaker.is-speaker-muted {
    opacity: .28 !important;
    filter: brightness(.5) !important;
    transform: scale(.92) !important;
    z-index: 1 !important;
  }
  /* ===== SPEAKERS OVERFLOW FIX ===== */

  .speakers,
  .speakers .container,
  .speakers-inner,
  .speaker-slider,
  .speaker-track-wrap {
    overflow: visible !important;
  }

  .speaker-track {
    overflow: visible !important;
    padding: 0 !important;
  }
  .speaker-track {
    padding: 0 !important;
  }
  /* ===== SPEAKERS SLIDER FINAL LAYOUT ===== */

  .speakers,
  .speakers .container,
  .speakers-inner {
    overflow: visible !important;
  }

  .speaker-track {
    display: flex !important;
    gap: 24px !important;
    overflow: visible !important;
    padding-left: 300px !important;
    padding-right: 280px !important;
  }

  .speaker {
    flex: 0 0 340px !important;
    width: 340px !important;
    min-width: 340px !important;
    min-height: 520px !important;
  }
  .speakers-viewport {
      overflow: VISIBLE !important;
  }
  .speaker-track {
    display: flex !important;
    gap: 24px !important;
  
    padding-right: 0 !important;
    overflow: visible !important;
  }
  /* ===== CALCULATOR FULL WIDTH ===== */

  .calc {
    padding: 120px 0;
  }

  .calc .container {
    max-width: 1180px !important;
    width: calc(100% - 40px) !important;
  }

  .calc h2 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
  }

  .calc-box {
    width: 100%;
    max-width: 1180px !important;
    margin: 0 auto;

    background: rgba(0,0,0,.18);
    border-radius: 26px;

    padding: 48px 70px !important;

    box-sizing: border-box;
  }

  .calc label {
    width: 100%;
    margin-bottom: 42px;
  }

  .calc input[type="range"] {
    width: 100%;
  }

  .payback {
    margin-top: 55px;
  }

  .payback strong {
    width: 100%;
    min-height: 78px;
    border-radius: 22px;
  }
  /* ===== PARTNERS LOGOS FINAL ===== */

  .partners {
      position: relative;
  }

  .partners .container,
  .partners-inner {
      width: min(1120px, calc(100% - 40px)) !important;
      max-width: 1120px !important;
      margin: 0 auto !important;
  }

  .partners-logos,
  .partner-logos,
  .partners-list {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;

      width: 100% !important;
      max-width: 1120px !important;

      gap: 40px !important;
      margin: 48px auto 58px !important;
      flex-wrap: nowrap !important;
  }

  /* одинаковый размер */
  .partners-logos img,
  .partner-logos img,
  .partners-list img {
      display: block !important;

      width: auto !important;
      height: 72px !important;
      max-height: 72px !important;
      max-width: 220px !important;

      object-fit: contain !important;
      opacity: 1 !important;
  }

  /* кнопка под ними */
  .partners .zmir-button,
  .partners .partner-btn {
      width: 100% !important;
      max-width: 1120px !important;
      margin: 0 auto !important;
  }
  /* ===== FOOTER FINAL ===== */

  .footer-final {
      padding: 95px 0 35px !important;
  }

  .footer-final__inner {
      width: min(1120px, calc(100% - 40px)) !important;
      max-width: 1120px !important;
      margin: 0 auto !important;
  }

  .footer-final__contacts {
      margin-bottom: 90px;
  }

  .footer-final__place {
      margin-bottom: 70px;
  }

  .footer-final p {
      margin: 0;
      font-size: 18px;
      line-height: 1.3;
  }

  .hotel-gallery {
      display: flex !important;
      gap: 14px !important;
      overflow-x: auto !important;
      margin: 36px 0 48px !important;
  }

  .hotel-gallery img {
      width: 285px !important;
      height: 215px !important;
      flex: 0 0 285px !important;
      object-fit: cover !important;
      border-radius: 18px !important;
  }

  .footer-final__actions {
      width: 1128px;
      max-width: 100%;
      height: 64px;

      display: grid;
      grid-template-columns: 250px 1fr;
      overflow: hidden;
      border-radius: 999px;
  }

  .footer-final__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
  }

  .footer-final__btn--black {
      background: #000;
      color: #fff;
      margin-left: 80px;
      box-shadow: 0 0 32px rgba(233,20,63,.8);
      z-index: 3 !important;
  }

  .footer-final__btn--red {
      background: linear-gradient(90deg,#3b0810,#d31836);
      color: #000;
  }

  .footer-final__bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 70px;
      margin-top: 85px;
  }

  .footer-final__logos {
      display: flex;
      align-items: center;
      gap: 42px;
      margin-bottom: 30px;
  }

  .footer-final__logos img {
      height: 34px;
      width: auto;
      object-fit: contain;
  }

  .footer-final__brand {
      max-width: 420px;
  }

  .footer-final__brand p {
      font-size: 14px;
      line-height: 1.3;
  }

  .footer-final__info {
      text-align: right;
  }

  .footer-final__socials {
      display: flex;
      justify-content: flex-end;
      gap: 14px;
      margin-bottom: 28px;
  }

  .footer-final__socials a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #971628;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
  }

  .footer-final__info p {
      font-size: 14px;
      line-height: 1.35;
      margin-bottom: 18px;
  }

  .footer-final__line {
      margin-top: 55px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.35);
      text-align: right;
  }

  .footer-final__line a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: 12px;
  }
  /* ===== HOTEL SLIDER ===== */

  .hotel-gallery {
      display: flex !important;
      gap: 18px !important;
      overflow: hidden !important;
      margin: 36px 0 48px !important;
      width: calc(100vw - ((100vw - 1120px) / 2)) !important;
      max-width: none !important;
      position: relative;
  }

  .hotel-gallery img {
      flex: 0 0 380px !important;
      width: 380px !important;
      height: 240px !important;
      object-fit: cover !important;
      border-radius: 22px !important;

      opacity: .45;
      filter: brightness(.55);
      transition: .35s;
  }

  .hotel-gallery img.is-hotel-active {
      opacity: 1;
      filter: brightness(1);
  }
  .question-popup {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(0,0,0,.72);
  }

  .question-popup.active {
      display: flex;
  }

  .question-popup__box {
      position: relative;
      width: min(760px, 100%);
      padding: 38px 42px;
      border-radius: 24px;
      background: #bd102b;
      color: #fff;
      box-shadow: 0 0 45px rgba(225,17,52,.6);
  }

  .question-popup__box ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }

  .question-popup__box li {
      font-size: 22px;
      line-height: 1.25;
      margin-bottom: 16px;
  }

  .question-popup__box li::before {
      content: "- ";
  }

  .question-popup__close {
      position: absolute;
      top: 12px;
      right: 18px;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 34px;
      cursor: pointer;
  }
  .question-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.72);
  }

  .question-popup.active {
    display: flex !important;
  }
  /* ===== LAUNCH SYSTEM FIX ===== */

  .launch-system {
    padding: 90px 0 70px !important;
    min-height: 560px !important;
    overflow: hidden !important;
  }

  .launch-system .result-grid {
    width: min(1120px, calc(100% - 40px)) !important;
    max-width: 1120px !important;
    min-height: 480px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: 540px 1fr !important;
    gap: 80px !important;
    align-items: start !important;
  }

  .launch-copy {
    width: auto !important;
    max-width: 540px !important;
    padding-top: 0 !important;
    z-index: 3 !important;
  }

  .launch-copy h2 {
    font-size: 72px !important;
    line-height: .95 !important;
    margin: 0 0 36px !important;
  }

  .launch-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .launch-list li {
    font-size: 19px !important;
    line-height: 1.22 !important;
    margin-bottom: 22px !important;
  }

  .launch-book-wrap {
    position: relative !important;
    width: 100% !important;
    min-height: 360px !important;
    overflow: visible !important;
  }

  .launch-book {
    position: absolute !important;
    top: 10px !important;
    right: -25px !important;

    width: 420px !important;
    max-width: none !important;
    height: auto !important;

    transform: rotate(12deg) !important;
    z-index: 2 !important;
  }
  /* =====================================================
    MOBILE HERO FULL RESET — FINAL
  ===================================================== */

  @media (max-width: 640px) {
    body {
      overflow-x: hidden !important;
    }

    .site-header {
      position: absolute !important;
      z-index: 99999 !important;
      padding: 20px 0 0 !important;
    }

    .header-inner {
      width: calc(100% - 56px) !important;
      height: 48px !important;
      margin: 0 auto !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
    }

    .header-logo {
      width: 175px !important;
      flex: 0 0 175px !important;
    }

    .header-logo img {
      width: 175px !important;
    }

    .header-labomed,
    .header-join {
      display: none !important;
    }

    .burger {
      display: flex !important;
      flex-direction: column !important;
      gap: 7px !important;
      width: 44px !important;
      height: 44px !important;
      margin-left: auto !important;
      position: relative !important;
      z-index: 100000 !important;
      border: 0 !important;
      background: transparent !important;
    }

    .burger span {
      width: 38px !important;
      height: 4px !important;
      margin: 0 !important;
      border-radius: 4px !important;
      background: #fff !important;
    }

    .nav {
      position: absolute !important;
      top: 70px !important;
      right: 28px !important;
      width: 250px !important;
      padding: 28px 20px !important;
      border-radius: 12px !important;
      background: #050505 !important;
      box-shadow: 0 0 34px rgba(225, 17, 52, .75) !important;
      display: none !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 20px !important;
      z-index: 99999 !important;
    }

    .nav.active {
      display: flex !important;
    }

    .nav a {
      font-size: 16px !important;
      color: #fff !important;
    }

    .hero-v2 {
      height: 1235px !important;
      min-height: 1235px !important;
      overflow: hidden !important;
    }

    .hero-v2__inner {
      width: calc(100% - 56px) !important;
      height: 1235px !important;
      margin: 0 auto !important;
      padding: 145px 0 0 !important;
      position: relative !important;
    }

    .hero-v2__content {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
    }

    .hero-v2__logo {
      width: 295px !important;
      margin: 0 0 20px !important;
    }

    .hero-v2__date {
      width: 100% !important;
      height: auto !important;
      margin: 0 0 26px !important;
      padding: 20px 24px !important;
      display: block !important;
      border-radius: 22px !important;
      background: #050505 !important;
      font-size: 38px !important;
      line-height: .95 !important;
      color: #bd102b !important;
      overflow: hidden !important;
    }

    .hero-v2__date span,
    .hero-v2__date em {
      display: inline !important;
      height: auto !important;
      padding: 0 !important;
      margin: 0 !important;
      background: transparent !important;
      font-size: inherit !important;
      line-height: inherit !important;
      color: #bd102b !important;
    }

    .hero-v2__title {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      font-size: 36px !important;
      line-height: 1.08 !important;
      letter-spacing: 0 !important;
    }

    .hero-v2__text {
      width: 290px !important;
      margin: 38px 0 0 !important;
      font-size: 27px !important;
      line-height: 1.12 !important;
      position: relative !important;
      z-index: 5 !important;
    }

    .hero-v2__microscope {
      position: absolute !important;
      top: 555px !important;
      right: -140px !important;
      width: 395px !important;
      max-width: none !important;
      z-index: 4 !important;
    }

    .hero-v2__day {
      position: absolute !important;
      top: 760px !important;
      left: 0 !important;
      width: 275px !important;
      z-index: 6 !important;
    }

    .hero-v2__day-title {
      font-size: 48px !important;
      line-height: 1 !important;
      color: #bd102b !important;
    }

    .hero-v2__day-text {
      margin-top: 12px !important;
      font-size: 24px !important;
      line-height: 1.12 !important;
      color: #bd102b !important;
    }

    .hero-v2__actions {
      position: absolute !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 95px !important;
      width: 100% !important;
      display: flex !important;
      flex-direction: column-reverse !important;
      gap: 42px !important;
      z-index: 10 !important;
    }

    .hero-v2__btn {
      width: 100% !important;
      height: 74px !important;
      min-height: 74px !important;
      border-radius: 999px !important;
      font-size: 25px !important;
      white-space: nowrap !important;
      transform: none !important;
    }

    .hero-v2__btn--red {
      background: #bd102b !important;
      color: #050505 !important;
    }

    .hero-v2__btn--black {
      background: #050505 !important;
      color: #fff !important;
      box-shadow: 0 0 34px rgba(225,17,52,.85) !important;
    }
    
        .hero-v2__date {
          width: 45% !important;
          display: flex !important;
          flex-direction: column;
                  gap: 10px;
          align-items: flex-start;
        }
        .hero-v2__date span:first-child {
  padding: 0px !important;
        }
  .hero-v2__actions {
          bottom: -448px !important;
          width: 45% !important;
  }
  .question-box {
    height: 390px;
  }
  .webinar-banner span {
      font-size: 21px;
  }
  .webinar-banner__arrow {
      width: 23px !important;
  }
  .plain-list {
  padding: 25px;
  }
  .track h3 {
  padding: 25px;
  }
  .reveal.is-visible {
  padding: 0px;
  }
  }
  /* =====================================================
    MOBILE FEATURES SLIDER
  ===================================================== */

  @media (max-width: 640px) {
    .features {
      padding: 70px 0 80px !important;
      overflow: hidden !important;
    }

    .features-inner {
      width: 100% !important;
      max-width: none !important;
      padding: 0 !important;
      overflow: visible !important;
    }

    .features .red-text {
      width: calc(100% - 56px) !important;
      margin: 0 auto 28px !important;
      font-size: 22px !important;
      line-height: 1.15 !important;
    }

    .features-grid {
      display: flex !important;
      gap: 16px !important;
      width: 100% !important;
      max-width: none !important;
      padding: 0 28px !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .features-grid::-webkit-scrollbar {
      display: none !important;
    }

    .feature-card {
      flex: 0 0 260px !important;
      width: 260px !important;
      height: 136px !important;
      min-height: 136px !important;
      padding: 22px 18px 18px !important;
      border-radius: 18px !important;
      scroll-snap-align: center !important;
    }

    .feature-card__icon {
      width: 32px !important;
      height: 32px !important;
      margin: 0 0 22px !important;
    }

    .feature-card span {
      font-size: 14px !important;
      line-height: 1.12 !important;
    }

    .feature-card--batyrev {
      background: #e11134 !important;
    }

    .feature-card__icon--star {
      width: 40px !important;
      height: 40px !important;
    }

    .features-wings {
      width: 250px !important;
      margin: 42px auto 0 !important;
      display: block !important;
    }
  }/* ===== MOBILE FEATURES START POSITION FIX ===== */

  @media (max-width: 640px) {
    .features {
      overflow: hidden !important;
    }

    .features-inner {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
      overflow: hidden !important;
    }

    .features-grid {
      display: flex !important;
      flex-wrap: nowrap !important;
      justify-content: flex-start !important;
      align-items: stretch !important;

      width: 100% !important;
      max-width: none !important;

      margin: 0 !important;
      padding: 0 28px !important;

      gap: 16px !important;

      overflow-x: auto !important;
      overflow-y: hidden !important;

      transform: none !important;
      translate: none !important;

      scroll-snap-type: x mandatory !important;
      scroll-padding-left: 28px !important;
    }

    .features-grid::-webkit-scrollbar {
      display: none !important;
    }

    .feature-card {
      flex: 0 0 260px !important;
      width: 260px !important;
      min-width: 260px !important;
      height: 136px !important;
      min-height: 136px !important;

      margin: 0 !important;
      padding: 22px 18px 18px !important;

      transform: none !important;
      scroll-snap-align: start !important;
    }

    .feature-card:first-child {
      margin-left: 0 !important;
    }

    .feature-card span {
      font-size: 14px !important;
      line-height: 1.12 !important;
    }
  }
  /* =====================================================
    MOBILE SPEAKER MODAL FIX
  ===================================================== */

  @media (max-width: 640px) {
    .speaker-modal {
      position: fixed !important;
      inset: 0 !important;
      z-index: 99999 !important;
      display: none !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 20px !important;
    }

    .speaker-modal.active {
      display: flex !important;
    }

    .speaker-modal__overlay {
      position: absolute !important;
      inset: 0 !important;
      background: rgba(0, 0, 0, .78) !important;
    }

    .speaker-modal__card {
      position: relative !important;
      width: 100% !important;
      max-width: 360px !important;
      max-height: 82vh !important;

      padding: 28px 22px 260px !important;
      border-radius: 26px !important;

      background: linear-gradient(180deg, #d71938 0%, #760916 100%) !important;
      overflow: hidden !important;

      box-shadow: 0 0 38px rgba(225, 17, 52, .75) !important;
      z-index: 2 !important;
    }

    .speaker-modal__close {
      position: absolute !important;
      top: 14px !important;
      right: 16px !important;
      z-index: 10 !important;

      width: 34px !important;
      height: 34px !important;

      border: 0 !important;
      background: #050505 !important;
      color: #fff !important;
      border-radius: 50% !important;

      font-size: 26px !important;
      line-height: 1 !important;
    }

    .speaker-modal__text {
      position: relative !important;
      z-index: 4 !important;
      width: 100% !important;
    }

    .speaker-modal__text h3 {
      margin: 0 0 18px !important;
      font-size: 28px !important;
      line-height: 1.05 !important;
      color: #fff !important;
    }

    .speaker-modal__text p {
      margin: 0 0 12px !important;
      font-size: 11px !important;
      line-height: 1.25 !important;
      color: #fff !important;
    }

    .speaker-modal__photo {
      position: absolute !important;
      right: -20px !important;
      bottom: 0 !important;

      width: 260px !important;
      max-width: none !important;
      height: auto !important;

      z-index: 3 !important;
    }

    .speaker-modal__znam {
      position: absolute !important;
      right: -55px !important;
      bottom: 120px !important;

      width: 260px !important;
      max-width: none !important;

      opacity: .35 !important;
      z-index: 1 !important;
    }
  }
  @media (max-width: 640px) {
    .speakers {
      overflow: hidden !important;
      padding: 80px 0 70px !important;
    }

    .speakers-viewport {
      overflow: visible !important;
    }

    .speaker-track {
      display: flex !important;
      gap: 14px !important;
      padding: 0 !important;
    }

    .speaker {
      flex: 0 0 315px !important;
      width: 315px !important;
      min-width: 315px !important;
      height: 535px !important;
      min-height: 535px !important;
      border-radius: 18px !important;
      transform: scale(.94) !important;
      transform-origin: center top !important;
    }

       .speaker-photo {
        width: 160px !important;
        margin-bottom: 60px !important;
        height: 160px !important;
    }

    .speaker h3 {
      font-size: 22px !important;
    }

    .speaker p,
    .speaker b {
      font-size: 18px !important;
      line-height: 1.2 !important;
    }

    .speaker-more {
      height: 46px !important;
      border-radius: 999px !important;
    }
  }
  @media (max-width: 640px) {
    .speaker {
      flex: 0 0 330px !important;
      width: 330px !important;
      min-width: 330px !important;
    }
.speaker-znam, .speaker-star {
height: 90px !important;
}
    .speaker-track {
      gap: 18px !important;
    }

    .speaker.is-speaker-muted {
      opacity: .45 !important;
      filter: brightness(.55) !important;
      transform: scale(.94) !important;
    }
    .speaker-track {
      /* margin-left: 190px; */
    }
    .speaker-modal__photo {
      display: none;
    }
  }
  /* ===== MOBILE LAUNCH SYSTEM ===== */

  @media (max-width: 640px) {

    .launch-system {
      padding: 70px 0 40px !important;
      min-height: auto !important;
      overflow: hidden !important;
    }

    .launch-system .result-grid {
      width: calc(100% - 56px) !important;
      margin: 0 auto !important;
      display: block !important;
      position: relative !important;
    }

    .launch-copy {
      width: 100% !important;
      position: relative !important;
      z-index: 3 !important;
    }

    .launch-copy h2 {
      margin: 0 0 34px !important;
      font-size: 46px !important;
      line-height: 1.05 !important;
    }

    .launch-list {
      margin: 0 !important;
      padding: 0 !important;
      list-style: none !important;
      position: relative !important;
      z-index: 3 !important;
    }

    .launch-list li {
      width: 100% !important;
      max-width: 320px !important;
      margin: 0 0 24px !important;
      font-size: 20px !important;
      line-height: 1.22 !important;
    }

    /* БЛОКНОТ ПОД ТЕКСТОМ */
    .launch-book-wrap {
      position: relative !important;
      width: 100% !important;
      height: 260px !important;
      margin-top: 24px !important;
      overflow: visible !important;
      z-index: 2 !important;
    }

    .launch-book {
      position: absolute !important;
      right: -70px !important;
      top: -20px !important;

      width: 250px !important;
      max-width: none !important;
      height: auto !important;

      transform: rotate(12deg) !important;
    }
  }
  /* ===== MOBILE CALCULATOR FULL WIDTH ===== */

  @media (max-width: 640px) {

    .payback-calculator,
    .calculator-section {
      width: 100% !important;
      max-width: 100% !important;
      padding: 70px 22px !important;
      box-sizing: border-box !important;
    }

    .calculator-wrap,
    .calculator-inner,
    .calculator-box {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
    }

    .calculator-title {
      width: 100% !important;
      text-align: center !important;
      margin-bottom: 44px !important;
    }

    .calc-row {
      width: 100% !important;
      margin-bottom: 42px !important;
    }

    .calc-control {
      display: flex !important;
      align-items: center !important;
      gap: 18px !important;
      width: 100% !important;
    }

    .calc-value {
      width: 145px !important;
      min-width: 145px !important;
    }

    .calc-slider,
    .calc-range {
      flex: 1 !important;
      width: auto !important;
      max-width: none !important;
    }

    .payback-result {
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 40px !important;
    }

    .payback-result-box {
      width: 100% !important;
      max-width: 100% !important;
    }
    #tickets .ticket-heart {
      display: none;
    }
    #tickets .racing-title {
      margin: 0;
      margin-top: 172px;
  }
  }
  /* ===== MOBILE VIDEO SLIDER ===== */

  @media (max-width: 640px) {
    .videos {
      overflow: hidden !important;
      padding: 70px 0 60px !important;
    }

    .videos-inner {
      width: 100% !important;
      max-width: none !important;
      padding: 0 !important;
    }

    .videos .racing-title {
      width: calc(100% - 56px) !important;
      margin: 0 auto 36px !important;
      font-size: 52px !important;
      line-height: 1 !important;
    }

    .race-video-slider {
      width: 100% !important;
      overflow: hidden !important;
    }

    .race-video-slider__viewport {
      width: 100% !important;
      overflow: visible !important;
    }

    .race-video-slider__track {
      display: flex !important;
      gap: 18px !important;
      padding: 0 28px !important;
      transition: transform .45s ease !important;
    }

    .race-video-slide {
      flex: 0 0 330px !important;
      width: 330px !important;
      height: 190px !important;
      border-radius: 18px !important;
      overflow: hidden !important;
    }

    .race-video-slide iframe {
      width: 100% !important;
      height: 100% !important;
    }

    .race-video-slide.is-video-muted {
      opacity: .42 !important;
      filter: brightness(.55) !important;
      transform: scale(.94) !important;
    }

    .race-video-slide.is-video-active {
      opacity: 1 !important;
      filter: none !important;
      transform: scale(1) !important;
    }
  }
      .hero-v2__day {
          right: 0px !important;
      }
  /* ===== PATCH: HERO DATE LIKE MOCKUP ===== */

  .hero-v2__date {
      display: inline-flex !important;
      align-items: center !important;

      height: 50px !important;
      padding: 0 28px !important;
      margin: 0 0 17px 0 !important;

      background: #000 !important;
      border-radius: 999px !important;
      box-shadow: none !important;

      font-family: 'a_LCDNova', Arial, sans-serif !important;
      font-size: 22px !important;
      line-height: 1 !important;
      font-weight: 400 !important;
      letter-spacing: .015em !important;
      text-transform: uppercase !important;

      color: #e11134 !important;
  }

  .hero-v2__date span,
  .hero-v2__date em {
      display: inline-flex !important;
      align-items: center !important;

      height: auto !important;
      padding: 0 !important;
      margin: 0 !important;

      background: transparent !important;
      border-radius: 0 !important;

      color: #e11134 !important;
      font-family: 'a_LCDNova', Arial, sans-serif !important;
      font-size: 22px !important;
      font-weight: 400 !important;
      line-height: 1 !important;
      font-style: normal !important;
      letter-spacing: .015em !important;
  }

  .hero-v2__date span:nth-child(2)::before,
  .hero-v2__date em::before {
      content: "/" !important;
      display: inline-block !important;
      margin: 0 12px !important;
      color: #e11134 !important;
  }
  /* ===== FIX HERO DATE ===== */

  .hero-v2__date span:first-child,
  .hero-v2__date span:nth-child(2),
  .hero-v2__date em {
      background: transparent !important;
      border-radius: 0 !important;
      color: #e11134 !important;
      padding: 0 !important;
      margin: 0 !important;
  }

  .hero-v2__date span:nth-child(2) {
      font-family: 'a_LCDNova', Arial, sans-serif !important;
      font-size: 22px !important;
      font-weight: 400 !important;
  }

  .hero-v2__date em {
      font-family: 'a_LCDNova', Arial, sans-serif !important;
      font-size: 22px !important;
  }

  .hero-v2__date span:nth-child(2)::before,
  .hero-v2__date em::before {
      content: " / ";
      color: #e11134;
      margin: 0 8px;
  }
  /* ===== PATCH: HERO BUTTONS LIKE MOCKUP ===== */

  .hero-v2__actions {
    width: 1128px !important;
    max-width: 1128px !important;
    height: 56px !important;

    display: grid !important;
    grid-template-columns: 255px 1fr !important;

    margin-top: 18px !important;
  }

  .hero-v2__btn {
    height: 56px !important;
    min-height: 56px !important;
    font-size: 18px !important;
    border-radius: 999px !important;
  }

  .hero-v2__btn--black {
    border-radius: 999px !important;
    margin-right: -28px !important;
    padding-left: 40px;
    z-index: 2 !important;
  }

  .hero-v2__btn--red {
    border-radius: 0 999px 999px 0 !important;
    padding-left: 70px !important;
    z-index: 1 !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .stagger,
  .stagger > *,
  [class*="reveal"],
  [class*="stagger"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    translate: none !important;
    animation: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .speaker--muted,
  .is-muted {
      opacity: 1 !important;
      filter: none !important;
      transform: none !important;
  }
  .speaker.is-speaker-muted {
      opacity: 1 !important;
      filter: brightness(1) !important;
  }
  .hero-v2__btn--red {
      border-radius: 0 999px 999px 0 !important;
      padding-left: 70px !important;
      margin-left: 180px;
      z-index: 1 !important;
      max-width: 1028px !important;
      width: 1028px !important;
  }
  /* ===== HERO MICROSCOPE SWING ===== */

  .hero-v2__microscope {
    animation: microscopeSwing 5.5s ease-in-out infinite !important;
    transform-origin: 55% 25%;
  }

  @keyframes microscopeSwing {
    0% {
      transform: rotate(0deg) translateY(0);
    }

    25% {
      transform: rotate(-2deg) translateY(-8px);
    }

    50% {
      transform: rotate(1.5deg) translateY(-14px);
    }

    75% {
      transform: rotate(-1deg) translateY(-6px);
    }

    100% {
      transform: rotate(0deg) translateY(0);
    }
  }
  /* ===== FORCE MICROSCOPE ANIMATION ===== */

  .hero-v2__microscope {
      animation: microscopeSwing 4s ease-in-out infinite !important;
      transform-origin: center center !important;
      will-change: transform;
  }
  /* ===== FINAL FIX: MICROSCOPE SWING ===== */

  .hero-v2__microscope {
    animation-name: microscopeSwing !important;
    animation-duration: 3.8s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    transform-origin: 52% 18% !important;
    will-change: transform !important;
  }

  @keyframes microscopeSwing {
    0% {
      transform: rotate(-1.8deg) translateY(0);
    }

    50% {
      transform: rotate(1.8deg) translateY(-8px);
    }

    100% {
      transform: rotate(-1.8deg) translateY(0);
    }
  }
  @keyframes microscopeSwing {
      0% {
          transform: rotate(-2deg);
      }

      50% {
          transform: rotate(2deg);
      }

      100% {
          transform: rotate(-2deg);
      }
  }
  .video-link {
      width: 1120px !important;
      max-width: 1120px;
      overflow: visible !important;
  }

  .footer-final__btn::before {
  content: "" !important;
          position: absolute !important;
          left: 0 !important;
        
          width: 335px !important;
          height: 74px !important;
          border-radius: 999px !important;
          background: #020202 !important;
          z-index: -1 !important;
          pointer-events: none !important;
          box-shadow: 0 0 26px rgba(255, 20, 60, .95), 0 0 55px rgba(225, 17, 52, .82), 0 0 95px rgba(225, 17, 52, .55), 0 18px 40px rgba(225, 17, 52, .34) !important;
  }
  .footer-final__btn footer-final__btn--black {
    z-index: 5;
  }
  .footer-final__btn--red {
      justify-content: flex-end !important;
      padding-right: 20px !important;
  }
  .site-header {
      position: relative;
      z-index: 1000;
  }

  .header-inner {
      position: relative;
      z-index: 1001;
  }

  .nav,
  .nav a,
  .header-join {
      position: relative;
      z-index: 1002;
  }
  /* ===== FINAL MICROSCOPE MOTION FIX ===== */

  .hero-v2__microscope {
    animation: zmirMicroscopeSwing 3.2s ease-in-out infinite !important;
    transform-origin: 50% 12% !important;
    will-change: transform !important;
    pointer-events: none !important;
  }

  @keyframes zmirMicroscopeSwing {
    0% {
      transform: rotate(-2deg) translateY(0);
    }

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

    100% {
      transform: rotate(-2deg) translateY(0);
    }
  }
.hero-v2,
.hero-v2__inner {
  overflow: visible !important;
}

.hero-v2__microscope {
  pointer-events: none !important;
  will-change: transform !important;
}
/* ===== SPEAKERS INDIVIDUAL BACKGROUNDS ===== */

.speaker {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.speaker-track .speaker:nth-child(1) {
  background-image: url('../img/plash.png') !important;
}

.speaker-track .speaker:nth-child(2) {
  background-image: url('../img/plash2.png') !important;
}

.speaker-track .speaker:nth-child(3) {
  background-image: url('../img/plash3.png') !important;
}

.speaker-track .speaker:nth-child(4) {
  background-image: url('../img/plash4.png') !important;
}
/* ===== MOBILE NORMAL SCROLL BACKGROUND ===== */

@media (max-width: 768px) {
  html {
    background: #050506 !important;
  }

  body {
    background-color: #050506 !important;
    background-image: url('/dental-business/img/mob-fullbg.png') !important;
    background-repeat: repeat-y !important;
    background-position: top center !important;
    /* background-size: 100% auto !important; */
    background-attachment: scroll !important;
  }

  body::before,
  body::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  main,
  header,
  footer,
  .site-header,
  .hero-v2,
  .marquee,
  .question,
  .track,
  .features,
  .lead,
  .speakers,
  .program,
  .result,
  .calc,
  .videos,
  .tickets,
  .faq,
  .partners,
  .contacts,
  .footer,
  .section-lines {
    background: transparent !important;
  }

  .hero-v2::before,
  .hero-v2::after,
  .section-lines::before,
  .section-lines::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }
}
/* ===== MOBILE HERO RESET NORMAL ===== */

@media (max-width: 768px) {
  .hero-v2 {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 60px !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  .hero-v2__inner {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 96px 24px 0 !important;
  }

  .hero-v2__content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-v2__logo {
    width: 280px !important;
    max-width: 100% !important;
    margin: 0 0 34px !important;
  }

  .hero-v2__date {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 88px !important;
    padding: 16px 22px !important;
    margin: 0 0 26px !important;
    border-radius: 26px !important;
    background: #050505 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .hero-v2__date span,
  .hero-v2__date em {
    display: inline !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    color: #bd102b !important;
    font-family: 'a_LCDNova', Arial, sans-serif !important;
    font-size: 31px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .hero-v2__date span:nth-child(2)::after {
    content: " / LUCIANO HOTEL";
  }

  .hero-v2__date em {
    display: none !important;
  }

  .hero-v2__title {
    font-size: 40px !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
    margin: 0 0 30px !important;
    word-break: normal !important;
  }

  .hero-v2__text {
    font-size: 24px !important;
    line-height: 1.18 !important;
    max-width: 320px !important;
    margin: 0 0 28px !important;
  }

  .hero-v2__microscope {
    position: relative !important;
    width: 330px !important;
    max-width: none !important;
    right: auto !important;
    top: auto !important;
    margin: -10px -95px -30px auto !important;
  }

  .hero-v2__day {
    position: relative !important;
    width: 230px !important;
    margin: 10px 0 32px !important;
    z-index: 5 !important;
  }

  .hero-v2__day-title {
    font-size: 42px !important;
    line-height: 1 !important;
  }

  .hero-v2__day-text {
    font-size: 22px !important;
    line-height: 1.1 !important;
  }

  .hero-v2__actions {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 24px !important;
    background: transparent !important;
  }

  .hero-v2__actions::before {
    display: none !important;
  }

  .hero-v2__btn {
    width: 100% !important;
    height: 68px !important;
    min-height: 68px !important;
    border-radius: 999px !important;
    font-size: 22px !important;
  }
  .hero-v2__actions {
    width: 100% !important;
    height: auto !important;
    margin-top: 40px !important;

    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 28px !important;

    position: relative !important;
    z-index: 10 !important;

    background: transparent !important;
}

.hero-v2__actions::before {
    display: none !important;
    content: none !important;
}

.hero-v2__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 72px !important;

    position: relative !important;
    z-index: 11 !important;

    font-size: 22px !important;
    border-radius: 999px !important;
}
.hero-v2__actions {
          bottom: 0px !important;
}

.hero-v2__btn--red {
margin-left: 0px;
}
    .hero-v2__btn--red {
        padding-left: 0px !important;
    }
    .track h2 {
font-size: 40px !important;
    }
    .track h3 {
font-size: 40px !important;
    }
    .speakers .racing-title {
font-size: 40px !important;
    }
    .calc .racing-title {
font-size: 40px !important;

    }
   
.tickets-head .racing-title {
font-size: 40px !important;
}
.faq h2, .partners h2, .contacts h2 {
font-size: 40px !important;
}
.racing-title {
  font-size: 40px !important;
}
}
/* ===== MOBILE SPEAKERS SWIPE FIX ===== */

@media (max-width: 768px) {
  .speakers-slider {
    width: 100% !important;
    overflow: visible !important;
  }

  .speakers-viewport {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x !important;
    padding-bottom: 24px !important;
  }

  .speaker-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    width: max-content !important;
    transform: none !important;
  }

  .speaker {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 430px !important;
  }

  .speakers-arrow {
    display: none !important;
  }
  .speaker-modal__znam {
    right: 0px !important;
        bottom: 0px !important;
        width: 90px !important;
        left: 0px !important;
        height: 90px;
  }
  .hero-v2__btn--black {
        padding-left: 0px;
        padding-top: 0px;
  }
}

/* ===== MOBILE VIDEOS SWIPE FIX ===== */

@media (max-width: 768px) {
  .race-video-slider__viewport {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x !important;
    padding-bottom: 24px !important;
  }

  .race-video-slider__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    width: max-content !important;
    transform: none !important;
  }

  .race-video-slide {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 430px !important;
  }
  .features {
    min-height: auto !important;
  }
}
/* ===== MOBILE MENU OPEN FIX ===== */

@media (max-width: 768px) {
  .site-header {
    z-index: 99999 !important;
  }

  .nav {
    display: none !important;
  }

  .nav.active,
  .site-header.menu-open .nav,
  body.menu-open .nav {
    display: flex !important;
    position: fixed !important;
    top: 90px !important;
    left: 24px !important;
    right: 24px !important;
    z-index: 99998 !important;

    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;

    padding: 32px 24px !important;
    border-radius: 28px !important;
    background: rgba(5, 5, 5, .96) !important;
    box-shadow: 0 0 35px rgba(225, 17, 52, .45) !important;
  }

  .nav.active a,
  .site-header.menu-open .nav a,
  body.menu-open .nav a {
    display: block !important;
    font-size: 20px !important;
    color: #fff !important;
  }
  .calc-box.calc-box-mockup {
    padding: 30px !important;
  }
}
@media (max-width: 768px) {
  .site-header {
    z-index: 99999 !important;
  }

  .burger {
    position: relative !important;
    z-index: 100000 !important;
    pointer-events: auto !important;
  }

  .nav {
    display: none !important;
  }

  .nav.active {
    display: flex !important;
    position: fixed !important;
    top: 92px !important;
    left: 24px !important;
    right: 24px !important;
    z-index: 99998 !important;

    flex-direction: column !important;
    gap: 22px !important;
    align-items: center !important;

    padding: 28px 22px !important;
    border-radius: 24px !important;
    background: rgba(5, 5, 5, .96) !important;
    box-shadow: 0 0 35px rgba(225, 17, 52, .45) !important;
  }

  .nav.active a {
    display: block !important;
    font-size: 20px !important;
    color: #fff !important;
  }
}
/* ===== MOBILE MENU ONLY ===== */

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    z-index: 99999 !important;
  }

  .nav {
    display: none !important;
  }

  .burger {
    display: flex !important;
    position: relative !important;
    z-index: 100001 !important;
    pointer-events: auto !important;
  }

  .mobile-nav {
    display: none !important;
  }

  .mobile-nav.active {
    display: flex !important;
    position: fixed !important;
    top: 104px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 64px) !important;
    max-width: 370px !important;
    z-index: 100000 !important;

    flex-direction: column !important;
    align-items: center !important;
    gap: 22px !important;

    padding: 30px 26px 28px !important;
    border-radius: 22px !important;
    background: #050505 !important;
    box-shadow:
      0 0 30px rgba(225, 17, 52, .45),
      0 0 70px rgba(0, 0, 0, .8) !important;
  }

  .mobile-nav a {
    font-family: 'Wix', Arial, sans-serif !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    color: #fff !important;
    text-decoration: none !important;
  }

  .mobile-nav__btn {
    width: 100% !important;
    height: 58px !important;
    margin-top: 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    background: #050505 !important;
    box-shadow:
      0 0 26px rgba(225, 17, 52, .9),
      0 0 55px rgba(225, 17, 52, .6) !important;

    font-weight: 800 !important;
  }
      .nav.active {
        display: none !important;
      }
}
/* ===== MOBILE FOOTER BUTTONS ===== */

.footer-mobile-actions {
    display: none;
}

@media (max-width: 768px) {

    .footer-final__actions {
        display: none !important;
    }

    .footer-mobile-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;

        width: calc(100% - 48px) !important;
        margin: 40px auto 50px !important;
    }

    .footer-mobile-btn {
        width: 100% !important;
        height: 72px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 999px !important;

        font-size: 22px !important;
        font-weight: 700 !important;
        text-decoration: none !important;

        position: relative !important;
    }

    .footer-mobile-btn--red {
        background: #bd102b !important;
        color: #000 !important;
    }

    .footer-mobile-btn--black {
        background: #050505 !important;
        color: #fff !important;

        box-shadow:
            0 0 22px rgba(225,17,52,.8),
            0 0 45px rgba(225,17,52,.45) !important;
    }
}
@media (max-width: 768px) {

  .footer-final__bottom{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:24px;
  }

  .footer-final__brand{
    width:100%;
  }

  .footer-final__logos{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
  }

  .footer-final__brand p{
    font-size:18px;
    line-height:1.25;
    margin:0;
  }

  .footer-final__info{
    width:100%;
  }

  .footer-final__socials{
    display:flex;
    gap:16px;
    margin:24px 0;
    justify-content: flex-start;
  }

  .footer-final__socials a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#9d0d24;
    color:#fff;
    font-weight:700;
  }

  .footer-final__info p{
    margin:0 0 18px;
    font-size:18px;
    line-height:1.3;
    text-align:left;
  }

  .footer-final__line{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.35);
  }

  .footer-final__line a{
    font-size:14px;
    opacity:.8;
  }
 .partner-logos img {
height: 60px !important;
  }
  .partners .btn {
width: 340px;

  }
  .hotel-gallery img {
    flex: 0 0 340px !important;
    width: 340px !important;
    height: 240px !important;
  }
      .features-wings {
        width: 330px !important;
        margin: 42px auto 0 !important;
        display: block !important;
        margin-top: 110px !important;
    }
    .partners-logos, .partner-logos, .partners-list {
flex-direction: column;
    }
    .payment-modal__close {
    right: 26px !important;
    top: 5px !important;
}
}
.footer-final__logos img {
  width: 320px !important;
  max-width: 100% !important;
  height: auto !important;
}

.footer-final__socials a {
  width: 52px !important;
  height: 52px !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
}

.footer-final__socials a img {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .footer-final__logos img {
    width: 305px !important;
  }

  .footer-final__socials a,
  .footer-final__socials a img {
    width: 48px !important;
    height: 48px !important;
  }
}