div.p-adv {
    --p-pink: #ff006d;
    --p-pink-dark: #d80055;
    --p-blue-soft: #d8ecff;
    --p-blue-badge: #d8deff;
    --p-text: #000000;
    font-family: 'Montserrat', system-ui, sans-serif;
    color: var(--p-text);
}

.p-adv * { box-sizing: border-box; }

/* ============ Block 1 — Hero ============ */
.p-adv__hero {
    padding: 40px 0 60px;
    background: #fff;
    position: relative;
}
.p-adv__hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 540px;
}
.p-adv__hero-bg {
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.p-adv__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.p-adv__hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 45%, #fff 100%);
}

.p-adv__hero-text {
    position: relative;
    z-index: 2;
    max-width: 634px;
    padding: 25px 0 0;
}
.p-adv__hero-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.35px;
    color: #000;
}
.p-adv__hero-title-hl {
    background: var(--p-blue-badge);
    padding: 4px 12px;
    margin-left: -12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
.p-adv__hero-subtitle {
    margin: 30px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.22px;
    color: #000;
    max-width: 581px;
}
.p-adv__hero-cta,
.p-adv__hero-cta:link,
.p-adv__hero-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 17px 30px;
    background: var(--p-pink);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    border-radius: 10px;
    border: none;
    transition: background .15s ease;
}
.p-adv__hero-cta:hover,
.p-adv__hero-cta:active {
    background: var(--p-pink-dark);
    color: #fff !important;
}

.p-adv__hero-girl {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 740px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

/* Info block — sits right under girl, no overlap */
.p-adv__hero-info-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.p-adv__hero-info {
    position: relative;
    background: rgba(216, 236, 255, 0.95);
    border-radius: 30px;
    min-height: 226px;
    padding: 28px 50px 28px 360px;
    overflow: hidden;
}
.p-adv__hero-info-boxes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 340px;
    height: auto;
    border-bottom-left-radius: 30px;
    pointer-events: none;
}
.p-adv__hero-info-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 170px;
}
.p-adv__hero-info-text p {
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: #000;
}
.p-adv__hero-info-text p:last-child { margin-bottom: 0; }

/* === Tablet === */
@media (max-width: 1100px) {
    .p-adv__hero-inner { min-height: 540px; padding: 0 16px; }
    .p-adv__hero-text { max-width: 48%; padding-top: 20px; }
    .p-adv__hero-title { font-size: 28px; }
    .p-adv__hero-title-hl { padding: 3px 10px; margin-left: -10px; }
    .p-adv__hero-subtitle { font-size: 18px; margin-top: 24px; }
    .p-adv__hero-cta { margin-top: 24px; font-size: 18px; padding: 14px 24px; }

    .p-adv__hero-girl { width: 56%; right: -10px; bottom: 0; }

    .p-adv__hero-info { padding: 24px 30px 24px 270px; }
    .p-adv__hero-info-boxes { width: 260px; }
    .p-adv__hero-info-text p { font-size: 17px; }
}

/* === Mobile === */
@media (max-width: 720px) {
    .p-adv__hero { padding: 24px 0 40px; }
    .p-adv__hero-inner {
        padding: 0;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    .p-adv__hero-bg { display: none; }

    .p-adv__hero-text {
        position: relative;
        max-width: 100%;
        padding: 24px 16px 0;
        order: 2;
    }
    .p-adv__hero-title { font-size: 26px; }
    .p-adv__hero-title-hl { padding: 3px 8px; margin-left: -8px; }
    .p-adv__hero-subtitle { font-size: 16px; margin-top: 16px; }
    .p-adv__hero-cta {
        margin-top: 20px;
        font-size: 18px;
        width: 100%;
    }

    .p-adv__hero-girl {
        position: relative;
        width: 100%;
        max-width: 480px;
        margin: 16px auto 0;
        right: 0;
        bottom: 0;
        order: 3;
        display: block;
    }

    .p-adv__hero-info-wrap { padding: 0 16px; margin-top: 0; }
    .p-adv__hero-info {
        padding: 0;
        border-radius: 20px;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    .p-adv__hero-info-boxes {
        order: 2;
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 360px;
        display: block;
        margin: 0;
        border-radius: 0 0 20px 20px;
    }
    .p-adv__hero-info-text {
        order: 1;
        padding: 24px 24px 8px;
        min-height: 0;
    }
    .p-adv__hero-info-text p { font-size: 15px; }
}

/* ============ Block 5 — Steps ============ */
.p-adv__steps {
    padding: 70px 0 80px;
    background: #fff;
}
.p-adv__steps-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.p-adv__steps-title {
    margin: 0 0 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.35px;
    color: #000;
}
.p-adv__steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    margin: 0 auto 50px;
    max-width: 1160px;
}
.p-adv__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.p-adv__step-icon {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 260px;
    margin-bottom: 16px;
}
.p-adv__step-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-adv__step-text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.16px;
    color: #000;
}
.p-adv__step-text b {
    font-weight: 700;
}
.p-adv__steps-cta,
.p-adv__steps-cta:link,
.p-adv__steps-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 100px;
    background: var(--p-pink);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    border-radius: 10px;
    border: none;
    transition: background .15s ease;
}
.p-adv__steps-cta:hover,
.p-adv__steps-cta:active {
    background: var(--p-pink-dark);
    color: #fff !important;
}

@media (max-width: 1100px) {
    .p-adv__steps { padding: 50px 0 60px; }
    .p-adv__steps-title { font-size: 28px; margin-bottom: 36px; }
    .p-adv__steps-grid { gap: 24px; }
    .p-adv__step-icon { max-width: 220px; }
}

@media (max-width: 720px) {
    .p-adv__steps { padding: 40px 0 50px; }
    .p-adv__steps-title { font-size: 24px; margin-bottom: 28px; }
    .p-adv__steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
        margin-bottom: 32px;
    }
    .p-adv__step-icon { max-width: 200px; }
    .p-adv__step-text { font-size: 14px; }
    .p-adv__steps-cta {
        width: 100%;
        font-size: 18px;
        padding: 14px 20px;
    }
}

/* ============ Block 6 — Catalog ============ */
.p-adv__catalog {
    padding: 60px 0 80px;
    background: #fff;
}
.p-adv__catalog-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.p-adv__catalog-title {
    margin: 0 0 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.35px;
    color: #000;
}
.p-adv__catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    margin: 0 auto;
}
.p-adv__cat-card,
.p-adv__cat-card:link,
.p-adv__cat-card:visited {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
    text-align: left;
}
.p-adv__cat-card-image {
    width: 100%;
    height: 340px;
    border-radius: 20px;
    background: rgba(204, 204, 204, 0.2);
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-adv__cat-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform .2s ease;
}
.p-adv__cat-card:hover .p-adv__cat-card-image img {
    transform: scale(1.04);
}
.p-adv__cat-card-name {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: #000;
}
.p-adv__cat-card-price {
    margin: 4px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    color: #6d7edd;
}
.p-adv__catalog-note {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 60px;
    background: #ffbcd9;
    color: #fe016d;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.16px;
    border-radius: 16px;
}

@media (max-width: 1100px) {
    .p-adv__catalog { padding: 50px 0 60px; }
    .p-adv__catalog-title { font-size: 28px; margin-bottom: 28px; }
    .p-adv__catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
    .p-adv__cat-card-image { height: 280px; }
    .p-adv__catalog-note { padding: 10px 24px; font-size: 14px; }
}

@media (max-width: 720px) {
    .p-adv__catalog { padding: 40px 0 50px; }
    .p-adv__catalog-title { font-size: 24px; margin-bottom: 20px; }
    .p-adv__catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .p-adv__cat-card-image { height: 220px; border-radius: 16px; margin-bottom: 12px; }
    .p-adv__cat-card-name { font-size: 16px; }
    .p-adv__cat-card-price { font-size: 20px; }
    .p-adv__catalog-note {
        display: block;
        text-align: center;
        margin: 28px 0 0;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 12px;
    }
}

/* ============ Block 7 — Reviews ============ */
.p-adv__reviews {
    padding: 30px 0 80px;
    background: #fff;
}
.p-adv__reviews-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #d8deff;
    border-radius: 30px;
    position: relative;
}
.p-adv__reviews-title {
    margin: 0 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: #000;
}
.p-adv__yandex-badge,
.p-adv__yandex-badge:link,
.p-adv__yandex-badge:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 36px;
    background: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    width: max-content;
    text-decoration: none !important;
    color: inherit !important;
}
.p-adv__yandex-stars { width: 130px; height: auto; }
.p-adv__yandex-icon { width: 36px; height: 36px; border-radius: 50%; }
.p-adv__yandex-rating {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #282828;
}
.p-adv__yandex-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #282828;
}
.p-adv__yandex-label b { font-weight: 700; }

.p-adv__reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
}
.p-adv__review {
    background: #fff;
    border: 3px solid #f1f0ff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 388px;
}
.p-adv__review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.p-adv__review-name {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #128bfc;
}
.p-adv__review-stars { width: 100px; height: auto; flex-shrink: 0; }
.p-adv__review-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.p-adv__review-track-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    color: #2b343f;
}
.p-adv__review-track-link,
.p-adv__review-track-link:link,
.p-adv__review-track-link:visited {
    color: #128bfc;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: underline;
}
.p-adv__review-days {
    margin: 0;
    max-width: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    color: #2b343f;
    text-align: right;
}
.p-adv__review-city {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
}
.p-adv__review-city span { color: #2b343f; margin-right: 4px; }
.p-adv__review-city {
    color: #586271;
}
.p-adv__review-text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: #586271;
}
.p-adv__review-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-top: auto;
}

.p-adv__reviews-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.p-adv__reviews-cta,
.p-adv__reviews-cta:link,
.p-adv__reviews-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: var(--p-pink);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 10px;
    border: 2px solid var(--p-pink);
    transition: background .15s ease, color .15s ease;
    min-width: 297px;
}
.p-adv__reviews-cta:hover,
.p-adv__reviews-cta:active {
    background: var(--p-pink-dark);
    border-color: var(--p-pink-dark);
    color: #fff !important;
}
.p-adv__reviews-cta--outline,
.p-adv__reviews-cta--outline:link,
.p-adv__reviews-cta--outline:visited {
    background: transparent;
    color: var(--p-pink) !important;
    min-width: 0;
    padding: 14px 22px;
}
.p-adv__reviews-cta--outline:hover,
.p-adv__reviews-cta--outline:active {
    background: var(--p-pink);
    color: #fff !important;
}

@media (max-width: 1100px) {
    .p-adv__reviews { padding: 20px 0 60px; }
    .p-adv__reviews-card { padding: 50px 16px; border-radius: 24px; }
    .p-adv__reviews-title { font-size: 32px; }
    .p-adv__reviews-grid { gap: 14px; }
    .p-adv__review { padding: 16px; min-height: 0; }
}

@media (max-width: 720px) {
    .p-adv__reviews-card { padding: 32px 12px; border-radius: 20px; }
    .p-adv__reviews-title { font-size: 24px; margin-bottom: 16px; }
    .p-adv__yandex-badge {
        gap: 10px;
        padding: 8px 16px;
        flex-wrap: wrap;
        max-width: calc(100% - 8px);
    }
    .p-adv__yandex-stars { width: 110px; }
    .p-adv__yandex-rating { font-size: 24px; }
    .p-adv__yandex-label { font-size: 14px; }
    .p-adv__reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .p-adv__reviews-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }
    .p-adv__reviews-cta { min-width: 0; width: 100%; font-size: 18px; padding: 14px 20px; }
    .p-adv__reviews-cta--outline { padding: 12px 20px; }
}

/* ============ Block 8 — Why us ============ */
.p-adv__why {
    padding: 40px 0 80px;
    background: #fff;
}
.p-adv__why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.p-adv__why-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 205px;
    height: 65px;
    background: #6d7edd;
    border-radius: 10px;
    padding: 12px 22px;
    transform: rotate(-2.93deg);
    box-shadow: 0 24px 12px rgba(0,0,0,0.15);
}
.p-adv__why-logo img {
    display: block;
    width: 161px;
    height: 43px;
    flex-shrink: 0;
}
.p-adv__why-title {
    margin: 40px auto 50px;
    max-width: 720px;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
}
.p-adv__why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0 auto;
}
.p-adv__why-card {
    position: relative;
    background: #fff;
    border: 2px solid #6d7edd;
    border-radius: 30px;
    min-height: 217px;
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
}
.p-adv__why-card-text {
    flex: 1 1 auto;
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: left;
}
.p-adv__why-card-text p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #263238;
}
.p-adv__why-card-text p b { font-weight: 700; }
.p-adv__why-link,
.p-adv__why-link:link,
.p-adv__why-link:visited {
    color: var(--p-pink) !important;
    font-weight: 600;
    text-decoration: none !important;
}
.p-adv__why-link:hover { text-decoration: underline !important; }

.p-adv__why-card-icon {
    flex: 0 0 227px;
    background: #6d7edd;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.p-adv__why-card-icon img {
    display: block;
    width: 191px;
    height: 191px;
    object-fit: contain;
}

/* Coupon ticket inside card 3 */
.p-adv__why-coupon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 63px;
}
.p-adv__why-coupon-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-adv__why-coupon-label {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.4px;
}

.p-adv__why-cta,
.p-adv__why-cta:link,
.p-adv__why-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0;
    padding: 17px 100px;
    background: var(--p-pink);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    border-radius: 10px;
    border: none;
    transition: background .15s ease;
}
.p-adv__why-cta:hover,
.p-adv__why-cta:active {
    background: var(--p-pink-dark);
    color: #fff !important;
}

@media (max-width: 1100px) {
    .p-adv__why { padding: 30px 0 60px; }
    .p-adv__why-title { font-size: 24px; margin: 32px auto 36px; }
    .p-adv__why-grid { gap: 14px; }
    .p-adv__why-card { min-height: 0; border-radius: 24px; }
    .p-adv__why-card-text { padding: 20px; }
    .p-adv__why-card-text p { font-size: 16px; }
    .p-adv__why-card-icon { flex: 0 0 170px; border-radius: 24px; }
    .p-adv__why-card-icon img { width: 150px; height: 150px; }
    .p-adv__why-coupon { width: 200px; height: 50px; }
    .p-adv__why-coupon-label { font-size: 30px; }
}

@media (max-width: 720px) {
    .p-adv__why { padding: 20px 0 50px; }
    .p-adv__why-logo {
        width: 175px;
        height: 56px;
        padding: 8px 16px;
    }
    .p-adv__why-logo img { width: 130px; height: 35px; }
    .p-adv__why-title { font-size: 20px; margin: 24px auto 24px; }
    .p-adv__why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .p-adv__why-card {
        flex-direction: column-reverse;
        border-radius: 20px;
    }
    .p-adv__why-card-text {
        padding: 16px 20px 20px;
        text-align: center;
        align-items: center;
    }
    .p-adv__why-card-text p { font-size: 15px; }
    .p-adv__why-card-icon {
        flex: 0 0 180px;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    .p-adv__why-card-icon img { width: 140px; height: 140px; }
    .p-adv__why-coupon { width: 200px; height: 50px; }
    .p-adv__why-coupon-label { font-size: 28px; }
    .p-adv__why-cta {
        width: 100%;
        margin-top: 32px;
        font-size: 18px;
        padding: 14px 20px;
    }
}

/* ============ Block 4 — Promo FAST15 ============ */
.p-adv__promo {
    background: #fff;
    padding: 40px 0 0;
}
.p-adv__marquee {
    background: #daedff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.p-adv__marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    animation: p-adv-marquee 60s linear infinite;
    will-change: transform;
}
.p-adv__marquee--reverse .p-adv__marquee-track {
    animation-direction: reverse;
}
.p-adv__marquee-item,
.p-adv__marquee-sep {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: #000;
    display: inline-block;
}
@keyframes p-adv-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .p-adv__marquee-track { animation: none; }
}

.p-adv__promo-body {
    background: #2b343f;
    padding: 50px 20px;
}
.p-adv__promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.p-adv__promo-ticket {
    position: relative;
    width: 412px;
    height: 141px;
    flex: 0 0 auto;
    transform: rotate(-6.66deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-adv__promo-ticket-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.p-adv__promo-ticket-label {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 94px;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.9px;
}
.p-adv__promo-text {
    margin: 0;
    max-width: 634px;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.35px;
    color: #fff;
    text-align: center;
}
.p-adv__promo-text-accent {
    background: #d8deff;
    color: #000;
    font-weight: 700;
    padding: 2px 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media (max-width: 1100px) {
    .p-adv__promo-body { padding: 40px 20px; }
    .p-adv__promo-inner { gap: 30px; }
    .p-adv__promo-ticket { width: 320px; height: 110px; }
    .p-adv__promo-ticket-label { font-size: 70px; }
    .p-adv__promo-text { font-size: 26px; }
    .p-adv__marquee-item, .p-adv__marquee-sep { font-size: 24px; }
}

@media (max-width: 720px) {
    .p-adv__promo-body { padding: 30px 16px; }
    .p-adv__promo-inner {
        flex-direction: column;
        gap: 20px;
    }
    .p-adv__promo-ticket { width: 260px; height: 90px; }
    .p-adv__promo-ticket-label { font-size: 56px; }
    .p-adv__promo-text { font-size: 20px; }
    .p-adv__marquee-item, .p-adv__marquee-sep { font-size: 18px; }
    .p-adv__marquee-track { gap: 12px; }
}

/* ============ Block 2 — Brands ============ */
.p-adv__brands {
    padding: 80px 0 60px;
    background: #fff;
    position: relative;
}
.p-adv__brands-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.p-adv__brands-title {
    margin: 0 0 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.35px;
    text-align: center;
    color: #000;
}
.p-adv__brands-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
    width: 1100px;
    max-width: 100%;
    pointer-events: none;
    z-index: 0;
}
.p-adv__brands-glow img {
    width: 100%;
    height: auto;
    display: block;
}
.p-adv__brands-grid {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1140px;
}
.p-adv__brand-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.p-adv__brand-card img {
    display: block;
    width: auto;
    height: 49px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .p-adv__brands { padding: 60px 0 40px; }
    .p-adv__brands-title { font-size: 28px; }
}

@media (max-width: 720px) {
    .p-adv__brands { padding: 40px 0 30px; }
    .p-adv__brands-title { font-size: 24px; margin-bottom: 24px; }
    .p-adv__brands-grid { gap: 8px; }
    .p-adv__brand-card img { height: 40px; }
}

/* ============ Block 3 — Example purchase ============ */
.p-adv__example {
    padding: 30px 0 60px;
    background: #fff;
}
.p-adv__example-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
    background: #fff;
    border: 2px solid var(--p-purple-border, #6d7edd);
    border-radius: 30px;
}
.p-adv__example-title {
    margin: 0 0 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.35px;
    text-align: center;
    color: #000;
}
.p-adv__example-title-accent {
    color: var(--p-pink);
}
.p-adv__example-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 20px;
    align-items: stretch;
}
/* === Left: purple card === */
.p-adv__example-left {
    position: relative;
    background: #6d7edd;
    border-radius: 30px;
    padding: 36px 40px 32px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-adv__example-left-text { width: 100%; }
.p-adv__example-sneaker-top {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.2px;
}
.p-adv__example-sneaker-brand {
    margin: 4px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.45px;
}
.p-adv__example-sneaker-img {
    width: 92%;
    max-width: 420px;
    height: auto;
    margin: 20px 0;
    object-fit: contain;
    flex: 1 1 auto;
}
.p-adv__example-sneaker-desc {
    margin: 0;
    max-width: 423px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.18px;
}

/* === Right column === */
.p-adv__example-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.p-adv__example-ru {
    position: relative;
    background: #c7c7c7;
    border-radius: 10px;
    height: 105px;
    padding: 22px 24px;
    overflow: hidden;
}
.p-adv__example-ru-text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    max-width: 200px;
}
.p-adv__example-ru-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.p-adv__example-ru-text b {
    display: inline-block;
    margin-top: 2px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
.p-adv__example-cat-small {
    position: absolute;
    right: -6px;
    top: -26px;
    width: 136px;
    height: auto;
    pointer-events: none;
}
.p-adv__example-us {
    position: relative;
    background: var(--p-pink);
    border-radius: 20px;
    padding: 24px 24px 0;
    color: #fff;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 380px;
}
.p-adv__example-us-label {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.2px;
}
.p-adv__example-us-price {
    margin: 4px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.45px;
}
.p-adv__example-us-note {
    margin: 16px 0 0;
    max-width: 324px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.16px;
}
.p-adv__example-cat-big {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 110%;
    max-width: 480px;
    height: auto;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .p-adv__example-card { padding: 40px 28px; border-radius: 24px; }
    .p-adv__example-title { font-size: 28px; margin-bottom: 32px; }
    .p-adv__example-cols { grid-template-columns: minmax(0, 1fr) 320px; gap: 16px; }
    .p-adv__example-left { padding: 28px 24px; min-height: 440px; }
    .p-adv__example-sneaker-brand { font-size: 36px; }
    .p-adv__example-us { min-height: 340px; }
    .p-adv__example-us-price { font-size: 36px; }
}

@media (max-width: 720px) {
    .p-adv__example { padding: 20px 0 40px; }
    .p-adv__example-card { padding: 32px 16px; border-radius: 20px; }
    .p-adv__example-title { font-size: 22px; margin-bottom: 24px; }
    .p-adv__example-cols {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .p-adv__example-left {
        padding: 32px 24px;
        min-height: 0;
        border-radius: 20px;
    }
    .p-adv__example-sneaker-brand { font-size: 32px; }
    .p-adv__example-sneaker-img { margin: 24px 0; max-width: 360px; }
    .p-adv__example-sneaker-desc { font-size: 15px; }

    .p-adv__example-ru { height: 92px; padding: 18px 20px; }
    .p-adv__example-ru-text { font-size: 16px; }
    .p-adv__example-ru-text b { font-size: 24px; }
    .p-adv__example-cat-small { width: 110px; top: -16px; }

    .p-adv__example-us { min-height: 380px; padding: 20px 20px 0; }
    .p-adv__example-us-label { font-size: 16px; }
    .p-adv__example-us-price { font-size: 30px; }
    .p-adv__example-us-note { font-size: 14px; }
    .p-adv__example-cat-big { width: 100%; max-width: 360px; }
}