/* Pricing section — two plan cards + included list. RTL/LTR safe. */

.prices__head { text-align: center; max-width: 640px; margin: 0 auto 2.2rem; }

.prices__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 1.1rem;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-panel);
    padding: 1.7rem 1.6rem 1.5rem;
    box-shadow: 0 14px 40px rgba(15, 40, 80, 0.07);
}

.price-card--featured {
    border: 2px solid var(--accent);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--accent), #6db3f8) border-box;
    box-shadow: 0 22px 60px rgba(31, 122, 224, 0.22);
    transform: scale(1.03);
}

.price-card__badge {
    position: absolute;
    top: -0.85rem;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent), #4a9af0);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: var(--r-pill);
    box-shadow: 0 6px 18px rgba(31, 122, 224, 0.35);
}
[dir="rtl"] .price-card__badge { transform: translateX(50%); }

.price-card__name {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--muted-2);
}

.price-card__price {
    margin: 0.2rem 0 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--ink);
}
.price-card__price b {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.price-card__price span { font-size: 1.4rem; font-weight: 700; }
.price-card__price i {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--muted-1);
    font-weight: 500;
}

.price-card__sub {
    margin: 0.15rem 0 1rem;
    font-size: 0.9rem;
    color: var(--muted-2);
    line-height: 1.55;
}

.price-card__cta { margin-top: auto; width: 100%; text-align: center; }

.prices__included {
    background: var(--accent-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-panel);
    padding: 1.5rem 1.5rem;
}
.prices__included h3 {
    margin: 0 0 0.8rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
.prices__included ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.prices__included li {
    position: relative;
    padding-inline-start: 1.6rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
}
.prices__included li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.28em;
    width: 0.95em;
    height: 0.95em;
    border-radius: 50%;
    background: var(--accent);
    -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M4 12.5l5 5L20 6.5"/%3E%3C/svg%3E') center / contain no-repeat;
    mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M4 12.5l5 5L20 6.5"/%3E%3C/svg%3E') center / contain no-repeat;
    background-color: #fff;
}

.prices__lock {
    max-width: 720px;
    margin: 1.6rem auto 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--warn-soft, #fdf3e0);
    border: 1px solid #f2dfb8;
    border-radius: var(--r-card);
    padding: 0.85rem 1.2rem;
}
.prices__fine {
    max-width: 720px;
    margin: 0.8rem auto 0;
    text-align: center;
    font-size: 0.83rem;
    color: var(--muted-1);
}

@media (max-width: 940px) {
    .prices__grid { grid-template-columns: 1fr 1fr; }
    .prices__included { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    .prices__grid { grid-template-columns: 1fr; }
    .price-card--featured { transform: none; order: -1; }
    .prices__included { grid-column: auto; }
}
