/* ============================================================
   Zerno — pricing (Seed / Field / Harvest)
   ============================================================ */

.plans-section { padding-top: 56px; }

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 980px) {
    .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid transparent;
    border-radius: var(--radius-l);
    padding: 34px 30px;
}

.plan-featured {
    background: var(--deep);
    border-color: var(--deep);
}

.plan-featured .plan-head h3,
.plan-featured .plan-desc strong { color: #fff; }

.plan-featured .plan-tag { color: var(--wheat); }

.plan-featured .plan-desc,
.plan-featured .check-list li { color: var(--deep-muted); }

.plan-featured .check-list li::before {
    background-color: rgba(232, 163, 61, .2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8A33D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 30px;
    background: var(--wheat);
    color: var(--wheat-ink);
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 5px 12px;
}

.plan-head h3 {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.plan-tag {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.plan-desc { font-size: .94rem; margin-bottom: 18px; }

.plan .check-list { flex: 1; margin-bottom: 22px; }

.plan .check-list li { font-size: .92rem; margin-bottom: 9px; }

.plan-cta { width: 100%; }

.plan-featured .plan-cta.btn-primary { background: var(--wheat); color: var(--wheat-ink); }
.plan-featured .plan-cta.btn-primary:hover { background: var(--wheat-2); }

.plans-note {
    margin-top: 28px;
    font-size: .9rem;
    color: var(--muted);
    max-width: 640px;
}
