/* ============================================================
   Pricing Service Card — psc-*
   Image-topped service cards with badge, price row,
   feature list with per-item icons, and CTA button.
   ============================================================ */

.psc-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* ── Grid ─────────────────────────────────────────────────── */
.psc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.psc-grid.psc-equal-height {
    align-items: stretch;
}

.psc-grid.psc-equal-height .psc-card {
    display: flex;
    flex-direction: column;
}

.psc-grid.psc-equal-height .psc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Button pushed to bottom only when equal-height is on */
.psc-grid.psc-equal-height .psc-btn {
    margin-top: auto;
}

/* ── Card ─────────────────────────────────────────────────── */
.psc-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-sizing: border-box;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.psc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ── Image ────────────────────────────────────────────────── */
.psc-image-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.psc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.psc-card:hover .psc-image {
    transform: scale(1.04);
}

/* ── Badge ────────────────────────────────────────────────── */
.psc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    line-height: 1.4;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

/* ── Body ─────────────────────────────────────────────────── */
.psc-body {
    padding: 24px 24px 28px;
    box-sizing: border-box;
}

/* ── Title ────────────────────────────────────────────────── */
.psc-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
    color: inherit;
}

/* ── Price row ────────────────────────────────────────────── */
.psc-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.psc-price {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary, #4a90d9);
}

.psc-price-suffix {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 400;
}

/* ── Description ──────────────────────────────────────────── */
.psc-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 16px;
}

/* ── Feature list ─────────────────────────────────────────── */
.psc-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.psc-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.psc-feat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--primary, #4a90d9);
    line-height: 1;
}

.psc-feat-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.psc-feat-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

/* ── Button ───────────────────────────────────────────────── */
.psc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background-color: var(--primary, #4a90d9);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease,
                box-shadow 0.2s ease, transform 0.15s ease;
    line-height: 1.4;
}

.psc-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .psc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .psc-grid {
        grid-template-columns: 1fr;
    }

    .psc-image-wrap {
        height: 200px;
    }
}