/* Landing 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;
}

/* === Themes Showcase === */
.promo-themes {
    padding: 90px 0 60px;
    background: #fff;
    text-align: center;
}

.promo-themes .h2,
.promo-unique .h2,
.promo-features .h2,
.promo-compare .h2,
.promo-cta .h2,
.promo-mid-cta .h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: #777;
    margin-bottom: 33px;
}

.promo-themes__grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding-top: 15px;
}

.promo-themes__item {
    flex: 0 0 260px;
    text-align: center;
}

.promo-themes__video {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 9 / 16;
    background: #f0e8ec;
}

.promo-themes__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-themes__name {
    display: block;
    margin-top: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #4A4A4A;
}

.promo-themes__note {
    font-size: 14px;
    color: #999;
    margin-top: 24px;
    text-align: center;
}

/* === Unique Features === */
.promo-unique {
    padding: 90px 0;
    background: #FDF7FA;
    text-align: center;
}

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

.promo-unique__card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    border: 1px solid #F0D9E6;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

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

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

.promo-unique__card p {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    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;
}

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

.promo-features .h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

/* === Comparison Table === */
.promo-compare {
    padding: 90px 0;
    background: #FDF7FA;
    text-align: center;
}

.promo-compare .h2 {
    margin-bottom: 40px;
}

.promo-compare__table-wrap {
    max-width: 760px;
    margin: 0 auto;
    overflow-x: auto;
}

.promo-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    text-align: center;
}
.promo-compare__table thead{
    background: none;
}
.promo-compare__table thead th {
    padding: 14px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #777;
    border-bottom: 2px solid #F0D9E6;
    white-space: nowrap;
}

.promo-compare__table thead th.promo-compare__us {
    color: #AC2169;
    font-size: 15px;
}

.promo-compare__table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0e4ec;
    color: #555;
}

.promo-compare__table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.promo-compare__table tbody td.promo-compare__us {
    color: #AC2169;
    font-weight: 600;
}

/* === 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: 888px) {
    .promo-themes__grid{
        overflow: auto;
        justify-content: flex-start;
    }
}
@media (max-width: 768px) {
    .promo-hero {
        padding: 60px 0 50px;
    }

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

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

    .promo-themes,
    .promo-unique,
    .promo-features,
    .promo-compare,
    .promo-cta,
    .promo-mid-cta {
        padding: 60px 0;
    }

    .promo-themes .h2,
    .promo-unique .h2,
    .promo-features .h2,
    .promo-compare .h2,
    .promo-cta .h2,
    .promo-mid-cta .h2 {
        font-size: 28px;
    }

    .promo-themes__grid {
        gap: 16px;
    }

    .promo-themes__item {
        flex: 0 0 200px;
    }

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

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

    .promo-compare__table {
        font-size: 13px;
    }

    .promo-compare__table thead th,
    .promo-compare__table tbody td {
        padding: 10px 8px;
    }
}

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

    .promo-themes__item {
        flex: 0 0 170px;
    }

    .promo-themes__grid {
        gap: 12px;
    }

    .promo-themes__video {
        border-radius: 10px;
    }

    .promo-themes__name {
        font-size: 13px;
    }

    .promo-mid-cta p {
        font-size: 16px;
    }
    .promo-themes__grid{
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
