/* ═══════════════════════════════════════════════
   Pricing Page — Additional Styles
   ═══════════════════════════════════════════════ */

/* --- Feature Detail Cards --- */
.feature-detail-card {
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.feature-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px rgba(27,107,58,.1);
}

/* --- Comparison Table Rows --- */
#comparison-table tbody tr {
    transition: background-color .2s;
}
#comparison-table thead th {
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

/* --- Pricing page hero orb adjustments --- */
#pricing-hero .hero-orb-1 {
    opacity: .06;
}
#pricing-hero .hero-orb-2 {
    opacity: .05;
}
