.comparison-table tbody tr {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.comparison-table tbody tr:hover {
  background-color: rgba(0, 4, 242, 0.06); /* soft indigo */
  transform: scale(1.005);
}

.hero-visual {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95) 0%, rgba(219, 234, 254, 0.85) 100%);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid rgba(219, 234, 254, 0.4);
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(219, 234, 254, 0.3);
}


/* Pricing / Engagement Section */
.pricing-engagement {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-step {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.step-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #fff;
}

.step-1 .step-badge { background: #34c6a3; }
.step-2 .step-badge { background: #00b4d8; }
.step-3 .step-badge { background: #0d6efd; }
.step-4 .step-badge { background: #ff9800; }

.pricing-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #111827;
}

.pricing-step ul {
    padding-left: 18px;
}

.pricing-step ul li {
    margin-bottom: 8px;
    color: #374151;
}

.pricing-step p {
    color: #374151;
    line-height: 1.6;
}

.pricing-step .note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6b7280;
}
