@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* cyrillic */
@font-face {
  font-family: 'Days One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/days-one-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: 'Days One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/days-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/montserrat-cyrillic-wght-normal.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/montserrat-latin-wght-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #000;
    overflow-x: hidden;
}

/* ─── UI COMPONENTS ─── */
.btn {
    font-family: 'Days One', sans-serif;
    /* text-transform: uppercase; */
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    transition: all 0.3s ease;
    text-decoration: none;

    font-size: 14px;
    height: 60px;
    padding: 0 36px;
    border-radius: 15px;
    gap: 10px;
}

.btn--primary {
    background: linear-gradient(90deg, #C13525 0%, #DF5E40 100%);
    color: white;
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(225, 96, 67, 0.3);
}

.pixel-arrow {
    width: 12px;
    height: 12px;
    display: inline-block;
    flex-shrink: 0;
    fill: currentColor;
}

.btn--glass {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ─── HERO BLOCK ─── */
.hero {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    opacity: 0;
    transition: opacity 4s ease-out;
    /* Повільно зникає */
}

.hero__video--active {
    z-index: -1;
    /* Стає поверх іншого відео */
    opacity: 1;
    transition: opacity 1s ease-in;
    /* Швидко з'являється */
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, rgba(15, 0, 0, 0.5) 100%);
    z-index: -1;
}

/* ─── HEADER BLOCK ─── */
.header {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.header__nav-bar {
    border: 1px solid #C16E66;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 24px;
    gap: 40px;
}

.header__logo {
    height: 22px;
    width: auto;
    display: block;
}

.header__btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 12px;
    gap: 10px;
    height: 100%;
}

.header__lang-toggle {
    border: 1px solid #C16E66;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    gap: 6px;
    transition: background 0.3s;
}

.header__lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ─── MAIN NAV BLOCK ─── */
.main-nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.main-nav__link:hover {
    color: #D94C38;
}

/* ─── HERO MAIN CONTENT ─── */
.hero__main {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    margin-top: -50px;
}

.hero__column {
    display: flex;
    flex-direction: column;
}

.hero__column--right {
    align-items: flex-end;
    text-align: right;
}

.hero__subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero__subtitle--reversed {
    margin-bottom: 0;
    margin-top: 20px;
}

.hero__highlight {
    color: #D34C37;
}

.hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 85px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

/* ─── ARROWS BLOCK ─── */
.arrows-pattern {
    display: flex;
    gap: 12px;
    color: #fff;
    margin-top: 32px;
}

.arrows-pattern--reversed {
    margin-top: 0;
    margin-bottom: 32px;
    transform: scaleX(-1);
}

.arrows-pattern__icon {
    opacity: 0.08;
    width: 14px;
    height: 14px;
    animation: arrowFlow 1.5s infinite ease-in-out;
}

.arrows-pattern__icon:nth-child(1) {
    animation-delay: 0.0s;
}

.arrows-pattern__icon:nth-child(2) {
    animation-delay: 0.1s;
}

.arrows-pattern__icon:nth-child(3) {
    animation-delay: 0.2s;
}

.arrows-pattern__icon:nth-child(4) {
    animation-delay: 0.3s;
}

.arrows-pattern__icon:nth-child(5) {
    animation-delay: 0.4s;
}

.arrows-pattern__icon:nth-child(6) {
    animation-delay: 0.5s;
}

.arrows-pattern__icon:nth-child(7) {
    animation-delay: 0.6s;
}

.arrows-pattern__icon:nth-child(8) {
    animation-delay: 0.7s;
}

.arrows-pattern__icon:nth-child(9) {
    animation-delay: 0.8s;
}

.arrows-pattern__icon:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes arrowFlow {
    0% {
        opacity: 0.08;
    }

    40% {
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
    }

    100% {
        opacity: 0.08;
    }
}

/* ─── HERO ACTIONS ─── */
.hero__actions {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.hero__btn {
    /* Стилі розмірів перенесені в глобальний клас .btn для однаковості */
}

/* ─── HERO FOOTER ─── */
.hero__footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.hero__footer-separator {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* BENEFITS SECTION */

.benefits {

    padding: 150px 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits__bg-1 {
    position: absolute;
    width: 503px;
    height: 503px;
    top: 320px;
    left: 797px;
    opacity: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 101, 62, 0.7) 0%, rgba(119, 15, 9, 0) 70%);
    filter: blur(80px);
    /* Розмиття для створення ефекту світіння */

}

/* PILL COMPONENT */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    padding: 20px 10px;
    border-radius: 14px;
    height: 0;
    border: 1px solid transparent;
}

.pill__point {
    content: " ";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 8px;

}

.pill--accent-1 {
    color: #E26043;
    border-color: #E26043;
}

.pill--accent-1 .pill__point {
    background-color: #E26043;
}

.pill--accent-2 {
    color: #49DE80;
    border-color: #51D29680;
    background-color: #111F19;
    border-radius: 100px;
    padding: 6px 12px;
    height: auto;
}

.pill--accent-2 .pill__point {
    background-color: #32D74B;
}

.benefits__title {
    font-family: 'Inter 24pt', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal; /* Regular */
    font-size: 65px;
    leading-trim: CAP_HEIGHT;
    line-height: 80px;
    letter-spacing: -1%;
    text-align: center;
}

.benefits__title span {
    font-family: 'Inter 24pt', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal; /* Regular */
    font-size: 65px;
    leading-trim: CAP_HEIGHT;
    line-height: 80px;
    letter-spacing: -1%;
    text-align: center;
    color: #E26043;
}

.benefits__container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Замініть на відступ з вашого макета */
    justify-content: space-between;
    max-width: 1330px;
    margin-top: 96px;
}

.benefits__card {
    position: relative;
    padding: 24px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.benefits__card-number {
    /* padding-bottom: 24px; */

    border-bottom: 3px solid;
    border-image-source: linear-gradient(90deg, rgba(243, 142, 119, 0) 0%, #F38E77 52.96%);
    border-image-slice: 1;


    color: #FFFFFF80;
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 50px;
    /* leading-trim: CAP_HEIGHT; */
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.benefits__card-title {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    /* leading-trim: NONE; */
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.benefits__card-text {
    color: #CCCCCC;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    /* leading-trim: NONE; */
    line-height: 20px;
    letter-spacing: 0%;

}

.benefits__card-mark {
    position: absolute;
    top: 24px;
    right: 24px;

    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    /* Бокові відступи, можна змінити за потребою */

    border: 1px solid #CCCCCC;
    border-radius: 30px;

    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

/* Перший рядок */
.benefits__card:nth-child(1) {
    flex: 1 1 535px;
    background: linear-gradient(111.56deg, #DE5B3D 15.36%, #9D2015 68.42%);

}

.benefits__card:nth-child(2) {
    flex: 1 1 430px;
    background: #0C0C0CBF;
}

.benefits__card:nth-child(3) {
    flex: 1 1 325px;
    background: linear-gradient(215.07deg, rgba(159, 159, 159, 0.1) 8.23%, rgba(246, 228, 228, 0.1) 79.38%);
}

/* Другий рядок */
.benefits__card:nth-child(4) {
    flex: 1 1 325px;
    background: linear-gradient(133.41deg, #0D0C0C 4.6%, #1C0F0D 90.04%);

}

.benefits__card:nth-child(5) {
    flex: 1 1 430px;
    background: linear-gradient(133.41deg, #0D0C0C 4.6%, #1C0F0D 90.04%);

}

.benefits__card:nth-child(6) {
    flex: 1 1 535px;
    background: linear-gradient(111.56deg, rgba(222, 91, 61, 0.85) 15.36%, rgba(157, 32, 21, 0.85) 68.42%), url("/skin/nutrax.partners/img/513d62b2dc4b7a615116aec438275465ce679f03.png");
    background-size: cover;
    background-blend-mode: add;
}

.benefits__footer {
    margin-top: 72px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* --- TOP OFFERS --- */
.top-offers {
    padding: 150px 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.top-offers__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin-bottom: 72px;
}

.top-offers .benefits__title {
    font-family: 'Inter 24pt', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 65px;
    leading-trim: CAP_HEIGHT;
    line-height: 70px;
    letter-spacing: -1%;
    text-align: left;
    text-transform: capitalize;
}

.top-offers .offers-list {
    align-self: center;
}

.top-offers__footer {
    display: flex;
    justify-content: center;
    margin-top: 72px;
    width: 100%;
}

/* Адаптив: скидаємо фіксовану ширину для мобілки/планшета */
@media (max-width: 1024px) {

    /* або інший брейкпоінт */
    .benefits__card:nth-child(n) {
        flex: 1 1 100%;
        /* Кожна картка на всю ширину на мобілці */
    }
}


.hero__title-highlight {
    color: #E26043;
}

.benefits__subtitle {
    color: #CCCCCC;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    max-width: 534px;

}

/* OFFERS CATALOG SWITCH */
.offers-catalog__switch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.offers-catalog__switch-item {
    cursor: pointer;
}

.offers-catalog__switch-input {
    display: none;
    /* Сховуємо стандартний radio button */
}

.offers-catalog__switch-label {
    display: inline-flex;
    align-items: center;

    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;

    line-height: 100%;
    letter-spacing: 0%;


    padding: 20px 10px;
    border: 1px solid #E26043;
    border-radius: 15px;
    height: 0;
    transition: all 0.3s ease;
}

.offers-catalog__switch-input:checked+.offers-catalog__switch-label {
    background-color: #E26043;
    color: #fff;
}

.bg-offers-elips {
    position: absolute;
    width: 704px;
    height: 675px;
    top: 452px;
    left: 32%;
    opacity: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 15, 9, 0.55) 0%, rgba(215, 101, 62, 0.55) 100%);
    filter: blur(80px);
    z-index: -1;
    /* Розмиття для створення ефекту світіння */
}

/* OFFERS LIST & CARD */
.offers-list {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1330px;
    width: calc(100% - 40px);
    margin-top: 0px;
    padding-top: 110px;
    padding-bottom: 110px;
    margin-left: auto;
    margin-right: auto;
    
    background-image: url("/skin/nutrax.partners/img/nutrax-1.svg"), url("/skin/nutrax.partners/img/partners-1.svg");
    background-position: top center, bottom center;
    background-repeat: no-repeat, no-repeat;
}

.offers-list__ellipse {
    position: absolute;
    width: 707px;
    height: 675px;
    right: 0;
    top: -250px;
    background: linear-gradient(180deg, rgba(119, 15, 9, 0.55) 0%, rgba(215, 101, 62, 0.55) 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.offer-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 519px;
    min-width: 30%;
    gap: 32px;
    padding: 16px;
    border-radius: 20px;
    border-width: 1px, 0px, 0px, 1px;
    border-style: solid;
    border-image-source: linear-gradient(212.08deg, rgba(48, 13, 5, 0) 1.34%, #DB684E 41.14%, rgba(48, 13, 5, 0) 90.91%);

    background: linear-gradient(186.46deg, #0E0D10 -2.08%, #230C00 94.91%);


}

.offer-card__head {
    position: relative;
    height: 222px;
}

.offer-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    border-color: #ffffff33;
    /* Додали видимий бордер */
    color: #fff;
    border-radius: 100px;
    padding: 6px 12px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.offer-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: none;
    background-color: #FFFFFF1A;
}

.offer-card__body {
    height: auto;
}

.offer-card__title {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;

    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.offer-card__info {
    margin-top: 28px;
    color: #CCCCCC;
}

.offer-card__info-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;


}

.offer-card__info-row+.offer-card__info-row {
    border-top: 1px solid #ffffff33;
    padding-top: 12px;
}

.offer-card__info-metric {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;

    line-height: 20px;
    letter-spacing: 0%;
    color: #CCCCCC;

}

.offer-card__info-value {}

.accent-1 {
    color: #E26043;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.pagination__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: #22222200;
    border: 1px solid #333333;
    border-radius: 12px;
    color: #CCCCCC;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination__btn:hover {
    background-color: #2a2a2a;
    color: #ffffff;
    border-color: #444444;
}

.pagination__btn--active {
    background-color: #2a2a2a;
    color: #ffffff;
    border-color: #555555;
}

.pagination__btn svg {
    width: 24px;
    height: 24px;
}

/* CALL TO ACTIONS SECTION */
.call-to-actions {
    position: relative;
    min-height: 100vh;
    padding-left: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    z-index: 1;

    border-bottom: 1px solid;
    border-image-source: linear-gradient(90deg, rgb(0, 0, 0) 0%, #E26043 52.96%, rgb(0, 0, 0) 100%);
    border-image-slice: 1;
}

.call-to-actions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/skin/nutrax.partners/img/cta-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: lighten;
    /* Плавне розчинення (затемнення) верхньої частини картинки */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    z-index: -1;
}

.call-to-actions__title {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 65px;
    line-height: 80px;
    letter-spacing: -1%;

}

.call-to-actions__subtitle {
    margin-top: 40px;

    color: #CCCCCC;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;

}

.call-to-actions__btn {
    margin-top: 70px;
}

/* CONTACT BUTTONS */
.btn--telegram,
.btn--email {
    border: 1px solid #e26043;
    color: #ffffff;
    gap: 12px;
}

.btn--telegram:hover,
.btn--email:hover {
    background-color: rgba(226, 96, 67, 0.15);
    border-color: #ff7f63;
    transform: translateY(-1px);
}

.btn--telegram::before {
    content: "";
    display: block;
    width: 22px;
    height: 20px;
    background-image: url("/skin/nutrax.partners/img/telegram.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.btn--email::before {
    content: "";
    display: block;
    width: 22px;
    height: 20px;
    background-image: url("/skin/nutrax.partners/img/email.svg");
    /* user will replace this */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* FOOTER */
.footer {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 186px;
    align-items: end;
    padding:  31px 56px;
    justify-content: space-between;
    min-height: 80vh;
    overflow: hidden;
}

.footer__nav-container {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: start;
}

.footer__nav {
    display: flex;
    flex-direction: row;
    gap: 160px;
    max-width: 415px;
    width: 100%;
    justify-content: space-between;

    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;

    line-height: 100%;
    letter-spacing: 0%;

}

.footer__nav-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.footer__nav-item {}

.footer__contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__logo {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.footer__bg-circle-1 {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 839px;
    height: 844px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(119, 15, 9) 5.43%, rgb(215, 101, 62) 99.07%);
    mix-blend-mode: screen;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    content: " ";
    filter: blur(250px);
    opacity: .75;
}

.footer__bg-circle-2 {
    position: absolute;
    top: -180px;
    right: 418px;
    width: 678px;
    height: 604px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(119, 15, 9) 2.26%, rgb(215, 101, 62) 100%);
    mix-blend-mode: screen;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    content: " ";
    filter: blur(250px);
    opacity: .7;
}

.footer__bg-circle-3 {
    position: absolute;
    bottom: -300px;
    left: -213px;
    width: 677px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(119, 15, 9) 23.1%, rgb(215, 101, 62) 89.29%);
    mix-blend-mode: screen;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    content: " ";
    filter: blur(250px);
    opacity: .8;
}

.footer__logo-container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    

}

.footer2 {
    display: flex;
    justify-content: end;
    padding-top: 20px;
    padding-right: 55px;
    padding-bottom: 23px;

    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;

}

.footer__nav-item > a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

/* ─── BURGER MENU AND MOBILE NAV ─── */
.header__burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 100;
    padding: 0;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.header__burger span:nth-child(1) { top: 0; }
.header__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__burger span:nth-child(3) { bottom: 0; }

.header__burger.is-active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { bottom: 50%; transform: translateY(-50%) rotate(-45deg); }

body.no-scroll {
    overflow: hidden;
}

/* ─── PARTNERS SECTION ─── */
.partners {
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #E26043 52.96%, rgba(0, 0, 0, 0) 100%);
    border-image-slice: 1;
    background: linear-gradient(0deg, rgba(76, 24, 0, 0.45) 0%, rgba(11, 9, 9, 0) 100%);
}

.partners__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 65px;
    line-height: 80px;
    letter-spacing: -1%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 72px;
    padding: 0 55px;
}

.partners__title span {
    color: #E26043;
}

.partners__slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners__track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scrollMarquee 30s linear infinite;
}

.partner-card {
    width: 280px;
    flex-shrink: 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-card__img {
    height: auto;
    max-height: 56px;
    max-width: 100%;
    width: auto;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.partner-card:hover .partner-card__img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}


/* ─── FAQ SECTION ─── */
.faq {
    padding: 150px 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.faq__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 65px;
    line-height: 80px;
    letter-spacing: -1%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 72px;
    align-self: flex-start;
    color: #E26043;
}

.faq__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 0;
}

.faq__item {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item:hover {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq__header {
    display: flex;
    align-items: center;
    padding: 44px 0;
    cursor: pointer;
    gap: 0;
    user-select: none;
}

.faq__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 55px;
    color: rgba(255, 255, 255, 0.3);
    width: 113px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.faq__question {
    font-family: 'Inter 24pt', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
    color: #ffffff;
    flex: 1;
    transition: color 0.3s ease;
}

.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer {
    padding: 16px 0 54px 113px;
    color: #CCCCCC;
    font-family: 'Inter 24pt', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

/* Active State */
.faq__item--active {
    border-bottom-color: #E26043;
    background: transparent;
}

.faq__item--active .faq__num,
.faq__item--active .faq__question,
.faq__item--active .faq__icon {
    color: #E26043;
}

.faq__item--active .faq__icon {
    transform: rotate(180deg);
}

.faq__item--active .faq__body {
    max-height: 500px;
}


@media (max-width: 1024px) {
    /* --- MOBILE HERO --- */
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hero__main {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0 16px;
        margin-top: 60px;
        gap: 64px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero__column {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero__column--left {
        align-items: flex-start;
        text-align: left;
    }

    .hero__column--left .hero__subtitle {
        order: 1;
        margin-bottom: 15px;
    }

    .hero__column--left .hero__title {
        order: 2;
        margin-bottom: 15px;
        text-align: left;
    }

    .hero__column--left .arrows-pattern {
        order: 3;
        margin-top: 0;
        margin-bottom: 0;
    }

    .hero__column--right {
        align-items: flex-end;
        text-align: right;
    }

    .hero__column--right .hero__subtitle--reversed {
        order: 1;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .hero__column--right .hero__title {
        order: 2;
        margin-bottom: 15px;
        text-align: right;
    }

    .hero__column--right .arrows-pattern--reversed {
        order: 3;
        margin-top: 0;
        margin-bottom: 0;
        transform: scaleX(-1);
    }

    .hero__title {
        font-family: 'Inter', sans-serif;
        font-size: 65px;
        line-height: 1.15;
    }

    .hero__actions {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: calc(100% - 32px);
        max-width: 320px;
        margin: 40px auto 30px auto;
    }

    .hero__actions .hero__btn {
        width: 100%;
        justify-content: center;
    }

    .hero__footer {
        display: none;
    }

    .header {
        justify-content: space-between;
        padding: 0 16px;
    }

    .benefits {
        padding: 80px 16px;
    }
    .header__nav-bar {
        width: 100%;
        justify-content: space-between;
        padding: 12px 20px;
    }
    .header__burger {
        display: block;
    }
    
    body.no-scroll .header__nav-bar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
        border-color: transparent;
    }
    
    body.no-scroll .header__logo {
        position: relative;
        z-index: 100;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000000;
        z-index: 90;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 88px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        overflow-y: auto;
        padding: 100px 0 80px 0;
    }
    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
    }
    .main-nav__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .main-nav__link {
        font-size: 24px;
    }
    
    .header__btn,
    .header__lang-toggle {
        display: none;
    }
    
    .main-nav .header__btn,
    .main-nav .header__lang-toggle {
        display: flex;
    }
    
    .main-nav__actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .main-nav .header__btn {
        width: calc(100% - 40px);
        max-width: 300px;
        height: 60px;
        border-radius: 15px;
        justify-content: center;
    }
    
    .main-nav .header__lang-toggle {
        height: 60px;
        width: calc(100% - 40px);
        max-width: 300px;
        justify-content: center;
    }

    /* --- MOBILE CALL TO ACTIONS --- */
    .call-to-actions {
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding: 60px 20px;
        min-height: auto;
    }
    
    .call-to-actions__title {
        font-size: 44px;
        line-height: 1.2;
        text-align: center;
    }
    
    .call-to-actions__subtitle {
        text-align: center;
    }

    /* --- MOBILE FOOTER --- */
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
        min-height: auto;
        border-bottom: 1px solid;
        border-image-source: linear-gradient(90deg, rgb(0, 0, 0) 0%, #E26043 52.96%, rgb(0, 0, 0) 100%);
        border-image-slice: 1;
    }
    
    .footer__nav-container {
        align-items: center;
    }
    
    .footer__nav {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        gap: 60px;
        flex-wrap: wrap;
    }
    
    .footer__nav-column {
        align-items: flex-start;
    }
    
    .footer__contact-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .footer__contact-buttons .btn {
        padding: 12px 15px;
        font-size: 13px;
        height: 50px;
    }
    
    .footer__bg-circle-1,
    .footer__bg-circle-2,
    .footer__bg-circle-3 {
        display: none;
    }
    
    .footer__logo-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .footer2 {
        justify-content: flex-end;
        padding-right: 20px;
        padding-left: 20px;
        color: #CCCCCC;
    }
    
    .benefits .benefits__title {
        font-size: 44px;
        line-height: 1.2;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .benefits .benefits__title span {
        font-size: 44px;
        line-height: 1.2;
    }

    .benefits__footer {
        margin-top: 60px;
    }

    .top-offers {
        padding: 80px 16px;
        align-items: flex-start;
    }

    .top-offers .offers-list {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .offer-card {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .top-offers__header {
        margin-bottom: 60px;
        align-items: flex-start;
        text-align: left;
    }

    .top-offers .benefits__title {
        font-size: 44px;
        line-height: 1.2;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .top-offers .benefits__title span {
        font-size: 44px;
        line-height: 1.2;
    }

    .top-offers__footer {
        margin-top: 60px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .top-offers__footer .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* ─── MOBILE PARTNERS & FAQ ─── */
    .partners {
        padding: 80px 0;
    }

    .partners__title {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .partners__slider {
        padding: 10px 0;
    }

    .partners__track {
        gap: 40px;
        animation-duration: 20s;
    }

    .partner-card {
        width: 180px;
        flex-shrink: 0;
        height: 80px;
    }

    .partner-card__img {
        max-height: 40px;
    }

    .faq {
        padding: 80px 16px;
    }

    .faq__title {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 40px;
    }

    .faq__list {
        gap: 0;
    }

    .faq__header {
        padding: 24px 0;
        gap: 0;
    }

    .faq__num {
        font-size: 24px;
        line-height: 30px;
        width: 60px;
    }

    .faq__question {
        font-size: 20px;
        line-height: 26px;
    }

    .faq__answer {
        padding: 8px 0 24px 60px;
        font-size: 14px;
        line-height: 1.5;
    }

    .bg-offers-elips,
    .benefits__bg-1,
    .offers-list__ellipse,
    .desktop-only {
        display: none;
    }
}