.posa-pricing-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
}

.posa-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 767px) {
    .posa-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.posa-pricing-card--featured {
    border-color: rgba(var(--primary-color-rgb), 0.55);
    box-shadow: 0 16px 48px rgba(var(--primary-color-rgb), 0.22);
}

.posa-pricing-card--qr {
    border-color: rgba(0, 0, 0, 0.08);
}

.posa-pricing-badge--soft {
    background: rgba(var(--primary-color-rgb), 0.22);
    color: var(--bg-dark-1);
}

.posa-pricing-btn--outline {
    background: #fff;
    color: var(--bg-dark-1) !important;
    border: 2px solid var(--primary-color);
}

.posa-pricing-btn--outline:hover {
    background: rgba(var(--primary-color-rgb), 0.12);
    color: var(--bg-dark-1) !important;
}

.posa-compare-table td,
.posa-compare-table th {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.posa-compare-table tr:last-child td {
    border-bottom: none;
}

.posa-pricing-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid rgba(var(--primary-color-rgb), 0.35);
    border-radius: 20px;
    padding: 48px 36px 32px;
    box-shadow: 0 12px 40px rgba(var(--primary-color-rgb), 0.14);
}

.posa-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--bg-dark-1) 0%, #2d5a3d 55%, var(--primary-color) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 999px;
    white-space: nowrap;
}

.posa-pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.posa-pricing-card .posa-pricing-desc {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.posa-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.posa-pricing-price .currency {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.posa-pricing-price .amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.posa-pricing-price .period {
    font-size: 16px;
    color: #aaa;
    margin-left: 4px;
}

.posa-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.posa-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.posa-pricing-features li:last-child {
    border-bottom: none;
}

.posa-pricing-features li::before {
    content: "✓";
    color: #3d6b4f;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.posa-pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #092519 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 20px rgba(9, 37, 25, 0.2);
}

.posa-pricing-btn:hover {
    background: #1a4d32 !important;
    transform: translateY(-1px);
    color: #fff !important;
}

.posa-feature-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.posa-feature-card:hover {
    transform: translateY(-4px);
}

.posa-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.posa-feature-card .posa-feature-body {
    padding: 20px 24px;
}

.posa-feature-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.posa-feature-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.posa-trial-banner {
    background: linear-gradient(135deg, #092519 0%, #1a4d32 100%);
    border: 1px solid rgba(181, 201, 154, 0.28);
    border-radius: 16px;
    padding: 32px 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 12px 32px rgba(9, 37, 25, 0.18);
}

.posa-trial-banner h3 {
    color: #fff;
    margin-bottom: 8px;
}

.posa-trial-banner p {
    opacity: 0.9;
    margin-bottom: 0;
}
