@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}

input,
textarea,
select,
button {
    outline: none;
    border: none;
}

input::placeholder,
textarea::placeholder {
    font-family: Inter, sans-serif;
}

body {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1440px;
    width: calc(100% - 16px);
    margin: 0 auto;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
}

.button__primary {
    padding: 6px 12px;
    color: white;
    background: #0a0a0a;
}

.button__red {
    background-color: #e50914;
    padding: 12px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    height: 48px;
}

.button__secondary {
    padding: 8px 12px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #d1d1d1;
    color: #326bee;
}

.input__wrapper {
    position: relative;
    display: block;
}

.input__label {
    position: absolute;
    top: 13px;
    left: 12px;
    font-size: 14px;
    color: #a3a3a3;
    text-wrap: nowrap;
    display: block;
    transition: all 0.3s;
}

.input__wrapper--active .input__label {
    transform: translateY(-6px);
    font-size: 12px;
    color: #777777;
}

.input__field {
    width: 100%;
    height: 48px;
    color: #0a0a0a;
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 21px 12px 5px 12px;
}

.input__error {
    display: none;
    font-size: 12px;
    color: #ee2d38;
}

.input__wrapper--error.input__wrapper--active .input__label {
    color: #e50914;
}

.input__wrapper--error .input__field {
    background-color: #fde7e8;
}

.input__wrapper--error .input__error {
    display: block;
}

/* HEADER */
.header__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

@media screen and (max-width: 767.98px) {
    .header__wrapper .button__text {
        display: none;
    }
}

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    /* Spacing */
    --container-padding-desktop: 80px;
    --container-padding-mobile: 16px;

    /* Breakpoints (for reference) */
    /* Mobile: <= 768px */
    /* Desktop: > 768px */

    /* Colors - will be added based on Figma */

    /* Typography - will be added based on Figma */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    width: 100%;
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    display: block;
}

.header__nav {
    flex-shrink: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.5px;
    color: #1f1f1f;
    text-align: center;
    transition: color 0.2s ease;
}

.header__nav-link:hover {
    color: #e50914;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    gap: 4px;
}

.header__burger-line {
    display: block;
    width: 14px;
    height: 1px;
    background-color: #0f0f0f;
    border-radius: 1px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Burger to X animation */
.header__burger--active .header__burger-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu {
    display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    width: 100%;
}

.hero__main {
    position: relative;
    background-color: #f6f6ff;
    padding: 60px 0;
    min-height: 551px;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #ffe3fd;
    border-radius: 800px;
}

.hero__badge-icon {
    flex-shrink: 0;
}

.hero__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f1f1f;
}

.hero__title {
    margin-top: 0;
    max-width: 669px;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
}

.hero__description {
    margin-top: 12px;
    max-width: 513px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
}

.hero__cta {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    width: 320px;
    height: 58px;
    background-color: #e50914;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: background-color 0.2s ease;
}

.hero__cta:hover {
    background-color: #c5070f;
}

.hero__image {
    position: absolute;
    top: -26px;
    right: calc((100vw - 1600px) / 2 + 10px);
    width: 1050px;
    height: 700px;
    pointer-events: none;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Features */
.hero__features {
    background-color: #fff;
    padding: 50px 0;
}

.hero__features-container {
    display: flex;
    align-items: center;
    gap: 72px;
}

.hero__feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background-color: #0a0a0a;
    border-radius: 16px;
}

.hero__feature-icon img {
    object-fit: contain;
}

.hero__feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #232323;
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits {
    padding: 75px 0;
}

.benefits__card {
    background-color: #fafafa;
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
}

.benefits__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    text-align: center;
}

.benefits__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
}

.benefits__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    color: #1f1f1f;
}

.benefits__grid {
    display: flex;
    gap: 60px;
}

.benefits__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefits__item-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.benefits__item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefits__item-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #0a0a0a;
}

.benefits__item-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f1f1f;
}

/* Benefits Access Card (dark) */
.benefits__access {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding: 16px 50px;
    background-color: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
}

.benefits__access-image {
    flex-shrink: 0;
    display: flex;
    width: 140px;
    height: 149px;
    object-fit: cover;
}

.benefits__access-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.benefits__access-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.benefits__access-list {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    list-style: disc;
    padding-left: 24px;
}

.benefits__access-list li {
    margin-bottom: 8px;
}

.benefits__access-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Intensiv (Slider)
   ========================================================================== */
.intensiv {
    padding: 0 0 75px 0;
}

@media (max-width: 768px) {
    .intensiv {
        padding: 0 0 40px 0;
    }
}

.intensiv__slider {
    width: 100%;
}

.intensiv__banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.intensiv__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    --swiper-pagination-bullet-horizontal-gap: 0px;
}

.intensiv__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 4px;
    background-color: #d9d9d9;
    opacity: 1;
    transition:
        background-color 0.2s ease,
        width 0.2s ease;
}

.intensiv__pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: #e50914;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing {
    padding: 30px 0;
}

.pricing__header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.pricing__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #1f1f1f;
}

.pricing__cards {
    display: flex;
    gap: 16px;
    max-width: 1250px;
    margin: 0 auto;
}

/* ==========================================================================
   Desktop Override for Swiper Sections (769px+)
   ========================================================================== */
@media (min-width: 769px) {
    /* Pricing: Make Swiper behave like flex */
    .pricing__slider-wrapper {
        overflow: visible;
    }

    .pricing__slider.swiper {
        overflow: visible;
    }

    .pricing__slider .swiper-wrapper {
        display: flex !important;
        transform: none !important;
        flex-wrap: nowrap;
        gap: 16px;
        align-items: stretch;
    }

    .pricing__slider .swiper-slide {
        width: auto !important;
        flex: 1;
        margin: 0 !important;
        display: flex;
        height: auto;
    }

    .pricing__slider .swiper-slide .pricing-card {
        height: 100%;
        width: 100%;
    }

    /* Partners: Show desktop, hide mobile */
    .partners--desktop {
        display: block;
    }

    .partners--mobile {
        display: none;
    }

    /* Additional Services: Show desktop, hide mobile */
    .additional-services--desktop {
        display: block;
    }

    .additional-services--mobile {
        display: none;
    }
}

/* ==========================================================================
   Pricing Card (reusable)
   ========================================================================== */
.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 16px;
    padding: 0 20px 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card--corp {
    padding: 20px;
}

.pricing-card--corp .pricing-card__header {
    margin-top: 0;
}

.pricing-card__badge {
    align-self: flex-end;
    padding: 5px 10px;
    border-radius: 0 0 12px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.5px;
}

.pricing-card__badge--standard {
    background-color: #f1f3f5;
    color: #1b1b1b;
}

.pricing-card__badge--popular {
    background-color: #e9f9ef;
    color: #1ec658;
}

.pricing-card__badge--premium {
    background-color: #eef2ff;
    color: #143c92;
}

.pricing-card__header {
    padding-bottom: 12px;
    margin-top: 12px;
    border-bottom: 1px solid #eee;
}

.pricing-card__name {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: #232323;
    margin-bottom: 8px;
}

.pricing-card__description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #3d3d3d;
    margin-bottom: 8px;
}

.pricing-card__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pricing-card__price {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #0a0a0a;
}

.pricing-card__vat {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #777;
}

.pricing-card__period {
    display: inline-block;
    padding: 4px 8px;
    background-color: #1f1f1f;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.pricing-card__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.pricing-card__feature img {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__feature span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #0a0a0a;
}

/* Tooltip for pricing card features */
.pricing-card__tooltip {
    flex-shrink: 0;
    margin-left: auto;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.pricing-card__tooltip:hover {
    opacity: 1;
}

.pricing-card__tooltip img {
    display: block;
    width: 14px;
    height: 14px;
}

/* Tooltip bubble */
.pricing-card__tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    width: max-content;
    bottom: calc(100% + 8px);
    right: 50%;
    transform: translateX(50%);
    padding: 8px 12px;
    background-color: #1f1f1f;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
    pointer-events: none;
    z-index: 10;
    max-width: 250px;
    white-space: normal;
}

/* Tooltip arrow */
.pricing-card__tooltip::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1f1f1f;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

/* Show tooltip on hover */
.pricing-card__tooltip:hover::before,
.pricing-card__tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Team info block for corporate pricing cards */
.pricing-card__team-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 12px;
}

.pricing-card__team-item {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 0;
}

.pricing-card__team-item img {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.pricing-card__team-item span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.2px;
    color: #0a0a0a;
}

/* Savings block for corporate pricing cards */
.pricing-card__savings {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 16px;
    padding: 10px;
    background-color: #f6fbff;
    border: 1px solid #e3f2fd;
    border-radius: 8px;
}

.pricing-card__savings img {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.pricing-card__savings span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    color: #3d3d3d;
}

.pricing-card__bonus {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: linear-gradient(-89deg, #f4f8ff 0%, #f3fffd 100%);
    border: 0.5px solid rgba(0, 113, 248, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    min-height: 75px;
    padding-right: 30px;
}

.pricing-card__bonus-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.pricing-card__bonus-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-card__bonus-item img {
    flex-shrink: 0;
}

.pricing-card__bonus-item span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #1f1f1f;
}

.pricing-card__bonus-image {
    position: absolute;
    z-index: 1;
    right: -18px;
    top: 0;
    width: 101px;
    height: 101px;
    object-fit: cover;
}

.pricing-card__button {
    width: 100%;
    padding: 12px 16px;
    background-color: #e50914;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-card__button:hover {
    background-color: #c5070f;
}

/* ==========================================================================
   Sections Base
   ========================================================================== */
.section {
    width: 100%;
}

/* Section modifiers - empty, will be filled as we build */
.section--header {
    /* Header section */
}

.section--hero {
    /* Hero/First screen */
}

.section--benefits {
    /* Benefits section */
}

.section--intensiv {
    /* Intensiv section */
}

.section--pricing {
    /* Pricing/Tariffs section (individual) */
}

.section--corporative-pricing {
    /* Corporative pricing section */
    /* Note: cards similar to .section--pricing */
}

.section--who-subscribe {
    /* Who subscribe section */
}

/* ==========================================================================
   Who Subscribe Section
   ========================================================================== */
.who-subscribe {
    padding: 30px 0;
    background-color: #fff;
    margin-top: 75px;
}

.who-subscribe__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 20px;
}

.who-subscribe__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1440px;
    margin: 0 auto;
}

.who-subscribe__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px 0 12px;
    background-color: #fafafa;
    border: 1px solid #ededed;
    border-radius: 16px;
}

.who-subscribe__image {
    flex-shrink: 0;
    width: 140px;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-subscribe__image img {
    display: block;
    width: 140px;
    height: 160px;
    object-fit: contain;
}

.who-subscribe__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who-subscribe__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #0a0a0a;
}

.who-subscribe__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f1f1f;
}

/* ==========================================================================
   Why Subscribe Section
   ========================================================================== */
.partners {
    padding: 40px 10px;
    background-color: #fff;
    margin-top: 75px;
}

.partners__container {
    width: 100%;
    padding: 0;
}

.partners__header {
    text-align: center;
    margin-bottom: 28px;
}

.partners__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.partners__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #1f1f1f;
}

.partners__logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.partners__logo-card {
    width: 100%;
    height: 94px;
    padding: 18.33px;
    border: 0.88px solid #eee;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__logo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    max-height: 100%;
    max-width: 100%;
}

/* ==========================================================================
   Why Subscribe Section
   ========================================================================== */
.why-subscribe {
    padding: 30px 0;
    background-color: #fff;
    margin-top: 75px;
}

.why-subscribe__header {
    text-align: center;
    margin-bottom: 24px;
}

.why-subscribe__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.why-subscribe__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #1f1f1f;
}

.why-subscribe__comparison {
    display: flex;
    gap: 16px;
    max-width: 1278px;
    margin: 0 auto;
}

.why-subscribe__card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 24px;
    border: 1px solid;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.why-subscribe__card--without {
    border-color: #f8b6b9;
}

.why-subscribe__card--with {
    border-color: #d4f4dd;
}

.why-subscribe__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-subscribe__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #0a0a0a;
}

.why-subscribe__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-subscribe__list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.why-subscribe__list-item img {
    flex-shrink: 0;
}

.why-subscribe__list-item span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
}

.why-subscribe__card-image {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-subscribe__card-image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

/* ==========================================================================
   Additional Services Section
   ========================================================================== */
.additional-services {
    padding: 30px 0;
    background-color: #fff;
    margin-top: 75px;
}

.additional-services__header {
    text-align: center;
    margin-bottom: 20px;
}

.additional-services__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.additional-services__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #1f1f1f;
}

.additional-services__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1218px;
    margin: 0 auto;
}

.additional-services__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background-color: #fafafa;
    border: 1px solid #f5f5f5;
    border-radius: 16px;
}

.additional-services__icon {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.additional-services__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: #232323;
}

.additional-services__card-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #1f1f1f;
    flex: 1;
}

.additional-services__price {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #0a0a0a;
}

.additional-services__badge {
    display: inline-block;
    padding: 4px 8px;
    background-color: #1f1f1f;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    width: fit-content;
}

.additional-services__button {
    padding: 12px 24px;
    background-color: #e91313;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 36px;
}

.additional-services__button:hover {
    background-color: #c91010;
}

.additional-services__button--secondary {
    /* Same styles as primary for now */
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews {
    margin-top: 75px;
    padding: 30px 0;
    background-color: #fff;
}

.reviews__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 20px;
}

.reviews__slider-wrapper {
    position: relative;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews__slider {
    overflow: hidden;
}

.reviews__card {
    background-color: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews__author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.reviews__author-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #0a0a0a;
}

.reviews__author-position {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #777;
}

.reviews__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
}

/* Navigation Buttons */
.reviews__button-prev,
.reviews__button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    padding: 8px;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.reviews__button-prev:hover,
.reviews__button-next:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
}

.reviews__button-prev {
    left: 0;
}

.reviews__button-prev img {
    transform: rotate(180deg);
    width: 18px;
    height: 18px;
}

.reviews__button-next {
    right: 0;
}

.reviews__button-next img {
    width: 18px;
    height: 18px;
}

/* Pagination */
.reviews__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    --swiper-pagination-bullet-horizontal-gap: 0px;
}

.reviews__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 4px;
    background-color: #d9d9d9;
    opacity: 1;
    transition:
        background-color 0.2s ease,
        width 0.2s ease;
}

.reviews__pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: #e50914;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
    padding: 75px 0;
    background-color: #fff;
}

.faq__title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 24px;
}

.faq__accordion {
    max-width: 748px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.faq__question:hover {
    background-color: #fafafa;
}

.faq__question span {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #0a0a0a;
}

.faq__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s ease;
}

.faq__icon--up {
    display: none;
}

.faq__icon--down {
    display: block;
}

.faq__item--active .faq__icon--up {
    display: block;
}

.faq__item--active .faq__icon--down {
    display: none;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    padding: 0 24px;
}

.faq__item--active .faq__answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq__answer p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer ul {
    list-style: disc;
    padding-left: 20px;
}

.faq__answer ul li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.faq__answer ul li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Form Section
   ========================================================================== */
.form-section {
    padding: 30px 0;
    background-color: #fff;
}

.form-section__wrapper {
    background-color: #0a0a0a;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
}

.form-section__image {
    position: absolute;
    right: 0;
    bottom: -70px;
    object-fit: contain;
}

.form-section__content {
    flex: 1;
    max-width: 617px;
}

.form-section__header {
    margin-bottom: 24px;
}

.form-section__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 8px;
}

.form-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.form-section__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.form-section__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-section__field {
    position: relative;
}

.form-section__field--full {
    width: 100%;
}

.form-section__input {
    width: 100%;
    padding: 16px 20px;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    transition: border-color 0.2s ease;
}

.form-section__input::placeholder {
    color: #999;
}

.form-section__input:focus {
    outline: none;
    border-color: #e91313;
}

.form-section__input.error {
    border-color: #e91313;
}

.form-section__error {
    display: block;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #e91313;
    min-height: 18px;
    display: none;
}

.form-section__checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    cursor: pointer;
}

.form-section__checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-section__checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.form-section__checkmark img {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-section__checkbox input:checked ~ .form-section__checkmark {
    background-color: #1ec658;
    border-color: #1ec658;
}

.form-section__checkbox input:checked ~ .form-section__checkmark img {
    opacity: 1;
}

.form-section__checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.5px;
    color: #fff;
}

.form-section__button {
    width: 100%;
    padding: 16px 24px;
    background-color: #e91313;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-section__button:hover {
    background-color: #c91010;
}

.form-section__button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.form-section__image {
    flex-shrink: 0;
}

.form-section__image img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #0a0a0a;
    padding: 40px 0;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__top-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__brand {
    flex-shrink: 0;
}

.footer__brand--mobile {
    display: none;
}

.footer__logo {
    display: block;
}

.footer__nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer__link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #d1d1d1;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer__link:hover {
    opacity: 0.7;
}

.footer__arrow {
    font-size: 12px;
}

.footer__contacts {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.footer__contact {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer__contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.footer__contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__contact-value:hover {
    opacity: 0.7;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

.footer__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__social-link {
    display: block;
    transition: opacity 0.2s ease;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.section--partners {
    /* Partners section */
}

.section--additional-services {
    /* Additional services section */
}

.section--reviews {
    /* Reviews section */
}

.section--faq {
    /* FAQ section */
}

.section--form {
    /* Form section */
}

.section--footer {
    /* Footer section */
}

/* ==========================================================================
   Media Queries - Mobile (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
    /* Partners: Hide desktop, show mobile */
    .partners--desktop {
        display: none;
    }

    .partners--mobile {
        display: block;
    }

    /* Additional Services: Hide desktop, show mobile */
    .additional-services--desktop {
        display: none;
    }

    .additional-services--mobile {
        display: block;
    }

    .container {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }

    /* Header mobile */
    .header__container {
        padding-top: 8px;
        padding-bottom: 8px;
        position: relative;
        z-index: 1000;
    }

    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    /* Mobile Menu */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 85%;
        height: 100vh;
        background-color: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }

    .mobile-menu--active {
        transform: translateX(0);
    }

    .mobile-menu__content {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding: 68px 16px 32px;
        min-height: 100%;
    }

    .mobile-menu__nav {
        display: flex;
        flex-direction: column;
        gap: 24px;
        flex: 1;
    }

    .mobile-menu__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #e5e5e5;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        color: #0a0a0a;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .mobile-menu__link:hover {
        color: #e50914;
    }

    .mobile-menu__contacts {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .mobile-menu__contact {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        text-decoration: none;
    }

    .mobile-menu__contact-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu__contact-icon--dark {
        background-color: #0a0a0a;
        border-radius: 10px;
        padding: 4px;
    }

    .mobile-menu__contact-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-menu__contact-label {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.35;
        letter-spacing: 0.5px;
        color: #4f4f4f;
    }

    .mobile-menu__contact-value {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        color: #232323;
    }

    .mobile-menu__social {
        display: flex;
        gap: 12px;
    }

    .mobile-menu__social-link {
        display: block;
        width: 32px;
        height: 32px;
    }

    .mobile-menu__social-link img {
        display: block;
        width: 100%;
        height: 100%;
    }

    /* Overlay when menu is open */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 98;
    }

    .mobile-menu-overlay--active {
        display: block;
    }

    /* Body scroll lock */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Hero mobile */
    .hero__main {
        min-height: 695px;
        padding: 26px 0;
        position: relative;
        overflow: hidden;
    }

    .hero__content {
        position: relative;
        z-index: 2;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
        max-width: 100%;
    }

    .hero__description {
        margin-top: 0;
        max-width: 100%;
        font-size: 16px;
    }

    .hero__cta {
        width: 100%;
        max-width: none;
    }

    .hero__image {
        display: block;
        position: absolute;
        top: auto;
        bottom: -70px;
        left: -91px;
        width: 570px;
        height: 380px;
        z-index: 1;
    }

    .hero__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero__features {
        padding: 24px 0;
    }

    .hero__features-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero__feature {
        width: 100%;
    }

    .hero__feature-icon {
        width: 62px;
        height: 62px;
        border-radius: 16px;
    }

    .hero__feature-text {
        font-size: 18px;
        font-weight: 500;
    }

    /* Benefits mobile */
    .benefits {
        padding: 24px 0;
    }

    .benefits__container {
        padding: 0;
    }

    .benefits__card {
        padding: 30px 10px;
        border-radius: 24px;
        gap: 24px;
    }

    .benefits__header {
        text-align: center;
        gap: 12px;
    }

    .benefits__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .benefits__subtitle {
        font-size: 20px;
        font-weight: 600;
        font-style: italic;
    }

    .benefits__grid {
        flex-direction: column;
        gap: 22px;
    }

    .benefits__item {
        gap: 10px;
    }

    .benefits__item-icon {
        width: 30px;
        height: 30px;
    }

    .benefits__item-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
    }

    .benefits__item-text {
        font-size: 16px;
    }

    .benefits__access {
        flex-direction: column;
        padding: 16px 24px;
        border-radius: 16px;
        gap: 26px;
    }

    .benefits__access-image {
        width: 140px;
        height: 130px;
        justify-content: flex-start;
    }

    .benefits__access-image img {
        position: static;
        width: 140px;
        height: auto;
    }

    /* Pricing mobile */
    .pricing {
        padding: 30px 0;
    }

    .pricing__container {
        padding: 0;
    }

    .pricing__header {
        text-align: center;
        padding: 0 16px;
        gap: 8px;
    }

    .pricing__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .pricing__subtitle {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.4;
    }

    .pricing__slider-wrapper {
        overflow: visible;
    }

    .pricing__cards {
        display: flex;
        gap: 16px;
        padding: 0;
        max-width: none;
        overflow: hidden;
        padding-bottom: 20px;
    }

    .pricing__slider .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    .pricing__slider .swiper-slide {
        width: 100%;
        max-width: calc(100% - 60px);
        flex-shrink: 0;
        height: auto;
    }

    .pricing-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .pricing-card__features {
        flex: 1;
    }

    .pricing-card__price {
        font-size: 32px;
    }

    .pricing-card__bonus-image {
        width: 80px;
        height: 80px;
    }

    /* Who Subscribe mobile */
    .who-subscribe {
        margin-top: 40px;
    }

    .who-subscribe__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .who-subscribe__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .who-subscribe__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        gap: 12px;
    }

    .who-subscribe__image img {
        width: 160px;
        height: 160px;
    }

    .who-subscribe__content {
        gap: 8px;
    }

    .who-subscribe__card-title {
        font-size: 20px;
    }

    .who-subscribe__card-text {
        font-size: 16px;
    }

    /* Why Subscribe mobile */
    .why-subscribe {
        margin-top: 40px;
    }

    .why-subscribe__header {
        gap: 8px;
        margin-bottom: 24px;
    }

    .why-subscribe__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .why-subscribe__subtitle {
        font-size: 20px;
    }

    .why-subscribe__comparison {
        flex-direction: column;
        gap: 24px;
    }

    .why-subscribe__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        gap: 12px;
    }

    .why-subscribe__card-image {
        width: 160px;
        height: 160px;
        order: 1;
    }

    .why-subscribe__list-item img {
        width: 20px;
        height: 20px;
    }

    /* Partners mobile */
    .partners {
        padding: 30px 0;
        margin-top: 40px;
    }

    .partners__container {
        padding: 0;
    }

    .partners__header {
        text-align: center;
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .partners__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }

    .partners__subtitle {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.4;
    }

    .partners__slider-wrapper {
        overflow: visible;
    }

    .partners__logos {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        padding: 0;
        overflow: hidden;
    }

    .partners__slider .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    .partners__slider .swiper-slide {
        width: calc(100% - 80px);
        max-width: 240px;
        flex-shrink: 0;
        height: auto;
    }

    .partners__logo-card {
        width: 100%;
        height: 94px;
    }

    /* Additional Services mobile */
    .additional-services {
        padding: 30px 0;
        margin-top: 40px;
    }

    .additional-services__container {
        padding: 0;
    }

    .additional-services__header {
        text-align: center;
        padding: 0 16px;
        margin-bottom: 20px;
    }

    .additional-services__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }

    .additional-services__subtitle {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.4;
    }

    .additional-services__slider-wrapper {
        overflow: visible;
    }

    .additional-services__cards {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        padding: 0;
        max-width: none;
        overflow: hidden;
    }

    .additional-services__slider .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    .additional-services__slider .swiper-slide {
        width: calc(100% - 60px);
        max-width: 320px;
        flex-shrink: 0;
        height: auto;
    }

    .additional-services__card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .additional-services__card-description {
        flex: 1;
    }

    /* Reviews mobile */
    .reviews {
        margin-top: 30px;
        padding: 30px 0;
        overflow: hidden;
    }

    .reviews__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 16px;
        padding: 0 16px;
    }

    .reviews__slider-wrapper {
        padding: 0;
        max-width: 100%;
        overflow: visible;
    }

    .reviews__slider {
        overflow: visible;
    }

    .reviews__card {
        width: 100%;
        height: auto;
    }

    /* Hide navigation buttons on mobile */
    .reviews__button-prev,
    .reviews__button-next {
        display: none;
    }

    .reviews__pagination {
        margin-top: 16px;
    }

    /* FAQ mobile */
    .faq {
        padding: 30px 0;
    }

    .faq__title {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 18px;
        padding: 0 16px;
    }

    .faq__accordion {
        max-width: 100%;
        gap: 12px;
    }

    .faq__item {
        border-radius: 12px;
    }

    .faq__question {
        padding: 16px;
        gap: 8px;
    }

    .faq__question span {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
    }

    .faq__icon {
        width: 32px;
        height: 32px;
    }

    .faq__answer {
        padding: 0 16px;
    }

    .faq__item--active .faq__answer {
        padding: 0 16px 16px;
    }

    .faq__answer p {
        font-size: 16px;
    }

    .faq__answer ul li {
        font-size: 16px;
    }

    /* Form Section mobile */
    .form-section {
        padding: 40px 0;
    }

    .form-section__fields {
        gap: 16px;
    }

    .form-section__checkmark {
        width: 20px;
        height: 20px;
    }

    .form-section__container {
        padding: 0;
    }

    .form-section__wrapper {
        flex-direction: column;
        padding: 40px 16px 270px 16px;
        gap: 24px;
        align-items: stretch;
    }

    .form-section__content {
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .form-section__header {
        margin-bottom: 24px;
    }

    .form-section__title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .form-section__subtitle {
        font-size: 18px;
        line-height: 1.3;
    }

    .form-section__field-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-section__input {
        padding: 12px;

        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0.25px;
    }

    .form-section__checkbox {
        margin-bottom: 16px;
        align-items: center;
    }

    .form-section__checkbox-text {
        font-size: 11px;
        font-weight: 400;
        line-height: 130%;
    }

    .form-section__button {
        font-size: 15px;
        padding: 16px 24px;
    }

    .form-section__image {
        position: absolute;
        right: 0;
        bottom: -160px;
        width: 100%;
    }

    .form-section__image img {
        width: 100%;
        height: auto;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0;
    }

    .footer__top {
        flex-direction: column-reverse;
        gap: 24px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .footer__top-left {
        width: 100%;
        gap: 16px;
    }

    .footer__brand {
        display: none;
    }

    .footer__brand--mobile {
        display: block;
    }

    .footer__logo {
        width: 143px;
        height: auto;
    }

    .footer__nav {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer__link {
        font-size: 14px;
        line-height: 1.45;
    }

    .footer__contacts {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .footer__contact {
        gap: 8px;
    }

    .footer__contact-label {
        font-size: 12px;
    }

    .footer__contact-value {
        font-size: 14px;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        gap: 12px;
        align-items: flex-start;
    }

    .footer__copyright {
        font-size: 14px;
        order: 2;
    }

    .footer__social {
        gap: 12px;
        order: 1;
    }
}
