/* Guests Promo Page */

.promo-page {
    padding: 0;
}

/* === Hero === */
.promo-hero {
    background: linear-gradient(135deg, #FDF7FA 0%, #f5e6ef 50%, #ece0f5 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.promo-hero__badge {
    display: inline-block;
    background: #AC2169;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.promo-hero .h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.15;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.promo-hero__subtitle {
    font-size: 19px;
    color: #5a5a5a;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.promo-hero__actions .button {
    font-size: 18px;
    padding: 14px 40px;
}

/* === Section Headings === */
.promo-features-main .h2,
.promo-how .h2,
.promo-details .h2,
.promo-cta .h2,
.promo-mid-cta .h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2d2d2d;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    font-size: 17px;
    color: #777;
    margin-bottom: 48px;
    text-align: center;
}

/* === Main Features Grid === */
.promo-features-main {
    padding: 90px 0;
    background: #fff;
}

.promo-features-main__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.promo-features-main__card {
    background: #FDF7FA;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #F0D9E6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.promo-features-main__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(172, 33, 105, 0.08);
}

.promo-features-main__icon {
    width: 44px;
    height: 44px;
    color: #AC2169;
    margin-bottom: 18px;
}

.promo-features-main__icon svg {
    width: 100%;
    height: 100%;
}

.promo-features-main__card .h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.promo-features-main__card p {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
}

/* === How It Works === */
.promo-how {
    padding: 90px 0;
    background: #FDF7FA;
}

.promo-how__grid {
    display: flex;
    gap: 40px;
    max-width: 880px;
    margin: 40px auto 0;
    justify-content: center;
}

.promo-how__step {
    flex: 1;
    text-align: center;
    max-width: 260px;
}

.promo-how__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #AC2169;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.promo-how__step .h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.promo-how__step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* === Mid CTA === */
.promo-mid-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5e6ef 0%, #ece0f5 100%);
    text-align: center;
}

.promo-mid-cta p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.promo-mid-cta .button {
    font-size: 18px;
    padding: 14px 40px;
}

/* === Detail Features === */
.promo-details {
    padding: 90px 0;
    background: #fff;
}

.promo-details .h2 {
    margin-bottom: 48px;
}

.promo-details__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

.promo-details__item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    transition: background 0.2s;
}

.promo-details__item:hover {
    background: #FDF7FA;
}

.promo-details__num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #E6A8D7;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.promo-details__item .h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2d2d2d;
}

.promo-details__item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* === CTA === */
.promo-cta {
    padding: 80px 0;
    background: #AC2169;
    text-align: center;
    color: #fff;
}

.promo-cta .h2 {
    color: #fff;
    margin-bottom: 16px;
}

.promo-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.promo-cta .button {
    background: #fff;
    color: #AC2169;
    font-size: 18px;
    padding: 14px 40px;
}

.promo-cta .button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* === Mobile === */

@media (max-width: 768px) {
    .promo-hero {
        padding: 60px 0 50px;
    }

    .promo-hero .h1 {
        font-size: 34px;
    }

    .promo-hero__subtitle {
        font-size: 16px;
    }

    .promo-features-main,
    .promo-how,
    .promo-details,
    .promo-cta,
    .promo-mid-cta {
        padding: 60px 0;
    }

    .promo-features-main .h2,
    .promo-how .h2,
    .promo-details .h2,
    .promo-cta .h2,
    .promo-mid-cta .h2 {
        font-size: 28px;
    }

    .promo-features-main__grid {
        grid-template-columns: 1fr;
    }

    .promo-how__grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .promo-details__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .promo-hero .h1 {
        font-size: 28px;
    }

    .promo-mid-cta p {
        font-size: 16px;
    }
}
