/* Pawa Agri-tech - Plan : page publique /pat-plans/ (canvas). */

.pat-canvas.pat-pricing-page {
    margin: 0;
    background: #f0f4ff;
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
    color: #1f2937;
}

.pat-pricing-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 20px 64px;
}

.pat-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pat-pricing-logo {
    max-height: 44px;
    margin-bottom: 18px;
}

.pat-pricing-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a44d4;
    margin: 0 0 8px;
}

.pat-pricing-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.pat-pricing-empty {
    text-align: center;
    color: #9ca3af;
}

.pat-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pat-pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(26, 68, 212, 0.06);
}

.pat-pricing-card-featured {
    border: 2px solid #f59e0b;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.15);
    transform: translateY(-4px);
}

.pat-pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: 999px;
}

.pat-pricing-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a44d4;
    margin: 0 0 6px;
}

.pat-pricing-price {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px;
}

.pat-pricing-period {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
}

.pat-pricing-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 16px;
}

.pat-pricing-features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    flex-grow: 1;
}

.pat-pricing-features li {
    font-size: 13px;
    color: #374151;
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
}

.pat-pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #1a44d4;
    font-weight: 700;
}

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

.pat-pricing-card .pat-btn-primary {
    background: #1a44d4;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pat-pricing-card .pat-btn-primary:hover {
    background: #15379f;
}

.pat-pricing-card-featured .pat-btn-primary {
    background: #f59e0b;
}

.pat-pricing-card-featured .pat-btn-primary:hover {
    background: #d97f06;
}
