:root {
      /* Colors */
      --color-primary: #01FEA7;
      --color-primary-dark: #00D88C;
      --color-secondary: #0CC9D6;
      --color-dark: #010001;
      --color-dark-2: #0B1926;
      --color-dark-3: #1E1E1E;
      --color-dark-4: #2D2D2D;
      --color-gray: #595D6E;
      --color-gray-light: #9498A5;
      --color-gray-lighter: #E3E3E3;
      --color-white: #FFFFFF;
      --color-white-off: #F9F9F9;
      --color-text-muted: #ABABAB;
      
      /* Gradients */
      --gradient-primary: linear-gradient(132deg, #00FFA6 0%, #0CC9D6 100%);
      --gradient-primary-hover: linear-gradient(132deg, #01CF87 0%, #0CACB8 100%);
      --gradient-dark: linear-gradient(42deg, #000000 0%, #2D2D2D 100%);
      --gradient-card: linear-gradient(233deg, #000000 0%, #2D2D2D 100%);
      --gradient-overlay: linear-gradient(180deg, rgba(1, 0, 1, 0) 0%, rgba(1, 0, 1, 1) 100%);
      
      /* Spacing */
      --spacing-xs: 4px;
      --spacing-sm: 8px;
      --spacing-md: 16px;
      --spacing-lg: 24px;
      --spacing-xl: 32px;
      --spacing-2xl: 48px;
      --spacing-3xl: 64px;
      --spacing-4xl: 96px;
      
      /* Typography */
      --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      
      /* Border Radius */
      --radius-sm: 6px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-xl: 40px;
      --radius-full: 999px;
      
      /* Shadows */
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
      --shadow-glow: 0 0 34px rgba(1, 254, 167, 1);
      
      /* Transitions */
      --transition-base: 0.2s ease;
      --transition-slow: 0.3s ease;
      
      /* Z-indexes */
      --z-header: 100;
      --z-modal: 1000;
      --z-tooltip: 500;
    }

    .hero {
      position: relative;
      min-height: 1000px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: var(--color-dark);
    }

    .hero__background {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
    }

    .hero__bg-layer {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero__bg-layer--stars {
      top: -241.93px;
      left: -161.65px;
      width: 2514.3px;
      height: 1243.04px;
      opacity: 1;
    }

    .hero__bg-layer--gradient-1 {
      top: 41.98px;
      right: -158.96px;
      width: 801.72px;
      height: 485.17px;
      mix-blend-mode: normal;
    }

    .hero__bg-layer--pattern {
      top: -1281.46px;
      left: -1150.22px;
      width: 3066.45px;
      height: 2102.24px;
      opacity: 0.3;
    }

    .hero__bg-layer--gradient-2,
    .hero__bg-layer--gradient-3,
    .hero__bg-layer--gradient-4,
    .hero__bg-layer--gradient-5,
    .hero__bg-layer--gradient-6 {
      background: linear-gradient(165deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 1) 54%);
    }

    .hero__overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 367.85px;
      background: linear-gradient(180deg, rgba(1, 0, 1, 0) 0%, rgba(1, 0, 1, 1) 100%);
      z-index: 1;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--spacing-4xl);
      padding: 100px 0 240px;
    }



    .hero__text {
      flex: 0 0 auto;
      max-width: 58%;
    }

    h1.hero__title {
      font-size: 70px!important;
      font-weight: 700;
      line-height: 1.1;
      text-align: left;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--spacing-lg);
      animation: fadeInUp 0.8s ease;
    }

    .hero__subtitle {
      font-size: 28.53px;
      font-weight: 700;
      line-height: 1.219;
      text-align: left;
      color: var(--color-white-off);
      margin-bottom: var(--spacing-md);
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    .hero__description {
      font-size: 24px;
      font-weight: 500;
      line-height: 1.219;
      text-align: left;
      color: var(--color-white-off);
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .hero__illustration {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      animation: fadeInUp 0.8s ease 0.6s both;
    }

    .hero__image {
      max-width: 1055.74px;
      width: 100%;
      height: auto;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1200px) {
      .hero__content {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
      }
      
      .hero__text {
        max-width: 100%;
      }
      
      h1.hero__title {
        font-size: 64px;
        text-align: center;
      }
      
      .hero__subtitle,
      .hero__description {
        text-align: center;
      }
      
      .hero__illustration {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
        .hero__content {
            padding: 45px 16px 115px;
        }
        .hero {
            min-height: auto;
        }

        h1.hero__title {
            font-size: 48px!important;
            text-align: left;
        }

        .hero__subtitle {
            font-size: 20px!important;
            text-align: left;
        }

        .hero__description {
            font-size: 18px!important;
            text-align: left;
        }
    }

    .container_landing {
        max-width: 1280px;
        margin: 0 auto;
        height: 100%;
        width: 100%;
    }

    .timeline-group {
        display: flex;
        flex-direction: column;
        z-index:99999;
        position: relative;
    }

    .timeline {
        position: relative;
        width: calc(100% + 28px);
        height: 60px;
        margin: 0 auto 30px;
        margin-left: -14px;
    }

    .timeline__dots {
        display: grid;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        width: 100%;
    }
    .timeline__dot1{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
        min-height: 60px;
        z-index: 0;
    }
    .timeline__dot1 > * {
        z-index: 1;
    }
    .timeline__dot1:after {
        position: absolute;
        background: #5b5b5b;
        content: '';
        width: 400px;
        height: 1px;
        z-index:0;
        left: 50%;
    }
    .early-bird-card-full:last-child .timeline__dot1:after {
        background:  #000000;
        width: 180px;
    }


    .timeline__dot1:before {
        position: absolute;
        background: #5b5b5b;
        content: '';
        width: 1px;
        height: 150px;
        z-index: 0;
        top: 50%;
        left: 50%;
    }

    @media (max-width: 1440px) {
      .timeline__dots {
        width: 100%;
      }
    }

    @media (max-width: 768px) {
        .timeline {
            width: 100%;
            height: 60px;
            margin-bottom: 40px;
        }
        .timeline__dot {
            width: 32px;
            height: 32px;
        }
    }

    .timer {
      display: flex;
      align-items: center;
      gap: 0;
      padding: 9.5px 15.83px 12.66px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(45, 45, 45, 1) 100%);
      border: 1px solid transparent;
      border-radius: 63.3px;
      position: relative;
    }

    .timer::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      background: radial-gradient(circle at -3% -8%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 86%);
      border-radius: 63.3px;
      z-index: -1;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      padding: 1px;
    }

    .timer__group {
        display: flex;
        align-items: center;
        gap: 0;
        min-width: 52px;
        justify-content: center;
    }

    .timer__group--with-seconds {
      display: flex;
      align-items: center;
      gap: 4.35px;
    }

    .timer__subgroup {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .timer__digit {
      font-family: var(--font-family);
      font-weight: 700;
      font-size: 34.8px;
      line-height: 1em;
      letter-spacing: 0.01em;
      text-align: center;
      color: #E6E6E6;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .timer__separator {
      width: 10px;
      height: 30.01px;
      font-family: var(--font-family);
      font-weight: 700;
      font-size: 34.8px;
      line-height: 1em;
      letter-spacing: 0.01em;
      text-align: center;
      color: #E6E6E6;
      display: flex;
      align-items: center;
      justify-content: center;
    }


    @media (max-width: 1200px) {
      .timer {
        padding: 4px;
      }
      
      .timer__digit,
      .timer__separator {
        font-size: 28px;
        width: 3px;
      }
    }

    @media (max-width: 768px) {
      .timer {
        padding: 3px 18px;
        border-radius: 40px;
      }
      
      .timer::before {
        border-radius: 40px;
      }
      .timer__group {
        min-width: 35px;
      }
      
      .timer__digit,
      .timer__separator {
        font-size: 22px;
      }

      span.timer__digit.timer_days_val {
            padding-right: 15px;
        }
      
      .timer__group--with-seconds {
        gap: 3px;
      }
    }

    .early-bird-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-3xl);
      gap: 40px;
      justify-content: space-between;
      width: 100%;
      margin: 0 auto;
    }

    .early-bird-cards::-webkit-scrollbar {
      display: none;
    }

    .early-bird-card {
      position: relative;
      width: 100%;
      border: 1px solid #b5b5b56b;
      border-radius: 30px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .early-bird-card::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      background: radial-gradient(circle at -3% -8%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 86%);
      border-radius: 30px;
      z-index: 1;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      padding: 1px;
      pointer-events: none;
    }

    /* Background */
    .early-bird-card__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(137deg, rgb(0 0 0) 0%, rgba(5, 5, 5, 1) 100%);
      z-index: 0;
    }


    .early-bird-card__bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.6;
      z-index: 1;
    }

    .early-bird-card-full:nth-child(1) .early-bird-card__bg::before {
          background-image: url('/wp-content/uploads/ny26/card_bg1.jpg');
    }
    .early-bird-card-full:nth-child(2) .early-bird-card__bg::before {
          background-image: url('/wp-content/uploads/ny26/card_bg2.jpg');
    }
    .early-bird-card-full:nth-child(3) .early-bird-card__bg::before {
          background-image: url('/wp-content/uploads/ny26/card_bg3.jpg');
    }
    .early-bird-card-full:nth-child(4) .early-bird-card__bg::before {
          background-image: url('/wp-content/uploads/ny26/card_bg4.jpg');
    }


    .early-bird-card__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(35.83px);
      z-index: 1;
      display: none;
    }

    .early-bird-card--past .early-bird-card__overlay {
      display: block;
      background: linear-gradient(137deg, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0) 100%);
    }


    .early-bird-card--past  .early-bird-card__bg::before {
        filter: grayscale(1);
    }
    /* Active card glow */
    .early-bird-card--active .early-bird-card {
      box-shadow: 0px 0px 34px 0px rgba(1, 250, 170, 1);
    }

    /* Date */
    .early-bird-card__date {
      position: relative;
      top: 21.59px;

      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      z-index: 2;
    }

    .early-bird-card__date--blurred {
      opacity: 0.5;
    }

    .early-bird-card__dates {
      font-family: var(--font-family);
      font-weight: 300;
      font-size: 36px;
      line-height: 0.75;
      letter-spacing: -0.04em;
      text-align: center;
      color: var(--color-white);
      white-space: nowrap;
    }

    .early-bird-card__month {
      height: 20.33px;
      font-family: var(--font-family);
      font-weight: 700;
      font-size: 16px;
      line-height: 1.6875;
      letter-spacing: -0.04em;
      text-align: center;
      color: var(--color-white);
    }

    /* Content */
    .early-bird-card__content {
      position: relative;
      top: 32px;
        margin-bottom: 110px;
      z-index: 2;
    }

    .early-bird-card__benefits {
      position: relative;
      margin-top: 70px;
      
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 47px;
    }

    .early-bird-card__benefit {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 7px;
    }

    .early-bird-card__benefit-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      width: 100%;
    }

    .early-bird-card__label {
      height: 43px;
      font-family: var(--font-family);
      font-weight: 700;
      font-size: 16px;
      line-height: 0.5;
      text-align: left;
      color: var(--color-white);
    }

    .early-bird-card__value-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .early-bird-card__value {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 62px;
      line-height: 0.75;
      letter-spacing: -0.04em;
      text-align: center;
    }

    .early-bird-card__value--days {
      background: linear-gradient(132deg, rgba(0, 255, 178, 1) 0%, rgba(0, 200, 226, 1) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .early-bird-card__value--discount {
      background: linear-gradient(132deg, rgba(0, 200, 226, 1) 0%, rgba(0, 255, 144, 1) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .early-bird-card__value--active {
      background: linear-gradient(132deg, rgba(202, 12, 255, 1) 0%, rgba(91, 41, 255, 1) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .early-bird-card__value--future {
      background: linear-gradient(132deg, rgba(202, 12, 255, 1) 0%, rgba(91, 41, 255, 1) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .early-bird-card__value--last {
      background: linear-gradient(132deg, rgba(202, 12, 255, 1) 0%, rgba(91, 41, 255, 1) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .early-bird-card__unit {
      width: 44px;
      height: 43px;
      font-family: var(--font-family);
      font-weight: 700;
      font-size: 16px;
      line-height: 0.6875;
      text-align: left;
      color: var(--color-white);
      display: flex;
      align-items: flex-end;
    }

    .early-bird-card__benefit-text {
      width: 100%;
      height: 17px;
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.0625;
      text-align: center;
      color: var(--color-white);
    }

    /* Badge */
    .early-bird-card__badge {
     
      font-family: var(--font-family);
      font-weight: 300;
      font-size: 16px;
      line-height: 1.6875;
      text-align: center;
      color: var(--color-white);
      margin-top: auto;
      z-index: 2;
      position: relative;
      padding-bottom: 25px;
    }

    .early-bird-card__badge--faded {
      color: rgba(255, 255, 255, 0.5);
    }

    /* Blur effect for past cards content */
    .early-bird-card--past .early-bird-card__benefits {
      filter: blur(9px) contrast(0.1)
    }

    /* Responsive */
    @media (max-width: 1440px) {
      .early-bird-cards {
        width: 100%;
        gap: 30px;
      }

    }

    @media (max-width: 1200px) {
        .early-bird-cards {
            overflow-x: scroll;
            gap: 30px;
              overflow-x: auto;
              -ms-overflow-style: none; 
              scrollbar-width: none; 
          }
    }

    @media (max-width: 1024px) {
      .early-bird-cards {
        overflow-x: scroll;
        gap: 20px;
      }
      
      .early-bird-card {
        width: calc(50% - 10px);
        min-width: 280px;
      }
    }

    @media (max-width: 768px) {
      .early-bird-cards {
        flex-direction: column;
        align-items: center;
        padding-left: 32px;
      }
      
      .early-bird-card {
        width: 100%;
        max-width: 340px;
        margin-bottom: 40px;
      }

      .early-bird-card__dates {
        font-size: 28px;
      }
      
      .early-bird-card__month {
        font-size: 14px;
      }
      
      .early-bird-card__value {
        font-size: 48px;
      }
    }

    .timeline__dot.timeline__dot--past.timeline_timer {
        border-radius: 64px;
        border: 1px solid rgba(255, 255, 255, 0.70);
        background: black;
        padding: 10px;
        z-index: 9;
        width: fit-content;
        height: fit-content;
        margin-top: -17px;
        color: var(--text-text-invert, #FFF);
        text-align: center;
        font-family: Montserrat;
        font-size: 34.797px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 34.797px */
        letter-spacing: 0.348px;
    }


    .promo-banner__content {
        text-align: center;
        margin: 32px 0 120px;
    }

    .promo-banner__content h2 {
        font-family: Montserrat;
        font-weight: 700;
        font-size: 54px!important;
    }

    .promo-banner__content p {
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        text-align: center;
        color: #fff;
    }


    @media (max-width:767px) {
        .promo-banner__content {
            margin: 52px 0 23px;
        }
        .promo-banner__content h2 {
            font-size: 24px!important;
        }
        .promo-banner__content p {
            font-weight: 400;
            font-size: 16px;
        }
    }



/* ============================================
   Partner Gifts Section
   ============================================ */
/*temp*/
section.partner-gifts .container {
    padding: 0 16px;
    max-width: 1280px;
}


.partner-gifts  {
  padding: 55px 0 0; 
}
.partner-gifts__card {
  background: linear-gradient(90deg, rgba(3, 3, 3, 1) 0%, rgba(36, 36, 36, 1) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 35px 40px;
}

.partner-gifts__header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 6px;
  position: relative;
}


.partner-gifts__content {
  margin-top: 46px;
}
.partner-gifts__icon {
  width: 27px;
  height: 16px;
      position: absolute;
    top: 10px;
}

.partner-gifts__title-wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 50px;
}

.partner-gifts__title-desc {
 
    max-width: 500px;
    color: white;
}
.partner-gifts__title-desc a {
  font-weight: 600;
  text-decoration: underline!important;
  color: white;
}


.partner-gifts__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.219;
  background: linear-gradient(132deg, rgba(0, 200, 226, 1) 0%, rgba(0, 255, 144, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-gifts__prize-icon {
  width: 34px;
  height: 34px;
}

/* Tabs */
.partner-gifts__tabs {
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.partner-gifts__tabs-header,
.partner-gifts__period-headers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  z-index: 99;
  top: 0;
  transition: all 0.3s;
  padding: 20px 0;

}
.partner-gifts__period-headers.is-sticky {
  background: black;
}
.partner-gifts__period-headers:after {
    content: '';
    position: absolute;
    height: 100%;
    z-index: -1;
    right: 0;
    left: 0;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }
.partner-gifts__period-headers.is-sticky:after {

    background: black;
    transition: all 0.3s;
}

.partner-gifts__tabs-spacer,
.partner-gifts__period-spacer {
  flex: 1;
}

.partner-gifts__tabs-nav,
.partner-gifts__period-columns {
  display: flex;
  align-items: center;
  gap: 19px;
  width: 457px; /* 4 * 104.5px + 3 * 19px = 418px + 57px = 475px approx */
}

.partner-gifts__tab,
.partner-gifts__period-col {
  width: 104.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.286;
  letter-spacing: -0.03em;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-base);
  opacity: 0.6;
}

.partner-gifts__tab:hover {
  opacity: 0.8;
}

.partner-gifts__tab--active {
  opacity: 1;
  font-weight: 600;
}

.partner-gifts__tabs-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.partner-gifts__tab-pane {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.partner-gifts__tab-pane--active {
  display: flex;
}

/* Partner Gift Group - группировка карточек одного партнёра */
.partner-gift-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 30px;
}



.partner-gift-card {
  display: grid;
  grid-template-columns: 197px 1fr 457px;
  gap: 0;
  align-items: stretch;
}

/* Колонка 1: Partner */
.partner-gift-card__partner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom:auto;
}

.partner-gift-card__partner-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.333;
  color: #970DFE;
  text-align: right;
}

.partner-gift-card__check-icon {
  width: 13.65px;
  height: 13.65px;
  flex-shrink: 0;
}

span.partner-gift-card__benefit-text + img {
    
/*    height: 24px;*/

}

/* Колонка 2: Inner content */
.partner-gift-card__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(130, 132, 153, 0.8);
  margin-left: 25px;
}

/* Убираем border-bottom у последней карточки в группе */
.partner-gift-group .partner-gift-card:last-child .partner-gift-card__inner {
  border-bottom: none;
  padding-bottom: 0;
}

.partner-gift-card__header {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.partner-gift-card__benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.partner-gift-card__benefit-text {
  max-width: 400px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.333;
  color: var(--color-white);
}

.partner-gift-card__content {
  display: none;
  align-items: center;
}
.partner-gift-card__header.is-open + .partner-gift-card__content {
  display: flex;
}
.partner-gift-card__description {
  max-width: 414px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner-gift-card__description p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.6);
}

.partner-gift-card__price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.partner-gift-card__price-free {
/*  color: #01C8E2;*/
}

.partner-gift-card__price-discount {
  color: red;
}

.partner-gift-card__pricing-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Колонка 3: Boxes */
.partner-gift-card__boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: start;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(130, 132, 153, 0.8);
}

/* Убираем border-bottom у последней карточки в группе */
.partner-gift-group .partner-gift-card:last-child .partner-gift-card__boxes {
  border-bottom: none;
  padding-bottom: 0;
}

.partner-gift-card__box {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 70px;
}

.partner-gift-card__box--empty {
  opacity: 0;
  pointer-events: none;
}

.partner-gift-card__box-icon {
/*  width: 48px;
  height: 48px;*/
  object-fit: contain;
}

.partner-gift-card__box-discount {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .partner-gift-card {
    grid-template-columns: 150px 1fr 380px;
  }

  .partner-gifts__tabs-nav,
  .partner-gifts__period-columns {
    width: 380px;
  }

  .partner-gift-card__boxes {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .partner-gift-card__box {
    width: 85px;
    min-height: unset;
  }
}

@media (max-width: 1024px) {
  .partner-gift-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-gift-card__partner {
    width: 100%;
    justify-content: flex-start;
  }

  .partner-gifts__tabs-header,
  .partner-gifts__period-headers {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

  }
  .partner-gift-card__benefit-text,
  .partner-gift-card__description {
    max-width: 100%;
  }

  .partner-gifts__tabs-spacer,
  .partner-gifts__period-spacer {
    display: none;
  }

  .partner-gifts__tabs-nav,
  .partner-gifts__period-columns {
    width: 100%;
     justify-content: space-between;
  }

  .partner-gift-card__boxes {
    justify-items: center;
    
  }
  .partner-gift-card__inner {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .partner-gifts__prize-icon {
    display: none;
  }
  .partner-gifts__header {
      flex-wrap: wrap;
      gap: 10px;
      padding-left: 0;
  }
  .partner-gifts__title-wrapper {
      padding-left: 35px;
  }
  .partner-gifts__title-desc {
  
  }

  .partner-gifts__period-headers {
      width: calc(100% + 32px);
      margin-left: -16px;
  }
  .partner-gifts__period-headers:after {
      width: 100%;
      margin-left: 0;
      height: unset;
  }

  .partner-gifts__card {
      padding: 16px;
  }

  .partner-gifts__title {
      font-size: 24px;
  }

  .partner-gifts__tabs-nav,
  .partner-gifts__period-columns {
      justify-content: space-between;
  }

  .partner-gifts__tab,
  .partner-gifts__period-col {
      width: auto;
      flex: 1;
  }
  .partner-gift-card__benefit {
      gap: 4px;
  }
  .partner-gifts__period-columns {
      gap: 4px;
      padding: 0 12px;
  }

  .partner-gift-card__benefit-text {
    max-width: 100%;
    font-size: 14px;
  }

  .partner-gift-card__boxes {
    gap: 3px;
  }

  .partner-gift-card__box {
    width: 70px;
    min-height: auto;
  }

  .partner-gift-card__box-icon {
/*    width: 36px;
    height: 36px;*/
  }

  .partner-gift-card__box-discount {
    font-size: 12px;
  }

  .partner-gift-card__description {
    max-width: 100%;
  }
}
@media (min-width:2601px) {
  .hero__content {
    padding: 20vh 0 40vh;
  }
  div#main:before {
        height: 100vh!important;
  }
}