/* ArWriter promo card */
.arwriter-promo-card {
    margin: 2rem auto;
    max-width: 600px;
    padding: 0 16px;
    direction: rtl;
}

.arwriter-promo-card__inner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(120deg, #7c3aed 0%, #a855f7 30%, #d946ef 60%, #f472b6 100%);
    color: #fff;
    box-shadow: 0 10px 40px rgba(124,58,237,0.4);
}

/* Header - green button RIGHT, star LEFT */
.arwriter-promo-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 16px 20px 0;
}

.arwriter-promo-card__top-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #22c55e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
}

.arwriter-promo-card__top-btn::before {
    content: "★";
    font-size: 11px;
}

.arwriter-promo-card__star {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Content */
.arwriter-promo-card__content {
    padding: 20px 24px 0;
    text-align: center;
}

.arwriter-promo-card__title {
    margin: 0 0 10px !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.3;
    color: #fff !important;
}

.arwriter-promo-card__subtitle {
    margin: 0 0 20px !important;
    font-size: 14px !important;
    line-height: 1.6;
    color: #fff !important;
    opacity: 0.95;
}

/* Features list - 2 columns, text RIGHT check LEFT */
.arwriter-promo-card__list {
    margin: 0 auto 16px !important;
    padding: 0 !important;
    list-style: none !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    font-size: 13px;
    max-width: 520px;
}

.arwriter-promo-card__list li {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right;
    direction: rtl;
}

.arwriter-promo-card__list li::before {
    display: none !important;
}

.arwriter-promo-card__list li > span:first-child {
    order: 2;
    margin-right: auto;
}

.arwriter-promo-card__list li > span:last-child {
    order: 1;
    flex: 1;
}

.arwriter-promo-card__check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 5px;
    background: #fbbf24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #1f2937;
    font-weight: bold;
}

/* WagoAI row */
.arwriter-promo-card__wago {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px;
    margin: 16px 0 0;
    font-size: 13px;
    background: rgba(255,255,255,0.1);
}

.arwriter-promo-card__wago-badge {
    background: linear-gradient(90deg, #facc15, #eab308);
    color: #1f2937;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
}

/* CTA */
.arwriter-promo-card__cta-wrap {
    padding: 0 20px 20px;
}

.arwriter-promo-card__cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #fff !important;
    color: #1f2937 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.arwriter-promo-card__cta::after {
    content: "←";
    font-size: 16px;
}

.arwriter-promo-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #1f2937 !important;
}

@media (max-width: 520px) {
    .arwriter-promo-card__list {
        grid-template-columns: 1fr;
    }
    .arwriter-promo-card__title {
        font-size: 22px !important;
    }
}
