.pricing-page {
    min-height: calc(100vh - 20mm);
    display: grid;
    place-items: center;
    padding: 40px 24px;
    background: #ffffff;
}

.pricing-card {
    width: min(900px, 100%);
    background: #ffffff;
    border: 1px solid #dbe3ee;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.pricing-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 28px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.plan-card {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 20px;
}

.plan-card--popular {
    background: #ffffff;
    border: 2px solid #00b380;
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00b380;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-price {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.plan-btn {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: #e6faf4;
    color: #00b380;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.plan-btn:hover {
    opacity: 0.85;
}

.plan-btn:active {
    transform: scale(0.98);
}

.plan-btn--primary {
    background: linear-gradient(135deg, #00b380, #059669);
    color: #ffffff;
}

.demo-link {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    background: #e6faf4;
    color: #00b380;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    transition: background 0.2s;
}

.demo-link:hover {
    background: #d3f5e8;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-title {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .plan-badge {
        top: -12px;
    }
}