/* Small, dedicated CSS for elements Tailwind doesn’t cover neatly */

.step-badge {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.15);
    /* emerald-ish */
    color: rgb(5, 150, 105);
    flex: 0 0 auto;
}

.whatsapp-icon {
    position: fixed;
    right: 16px;
    bottom: 76px;
    /* sits above mobile bottom bar */
    width: 54px;
    height: 54px;
    border-radius: 9999px;
    background: #22c55e;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.18);
    z-index: 60;
}

.whatsapp-icon img {
    filter: invert(1);
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgb(226 232 240);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    z-index: 55;
}

.mobile-cta-call,
.mobile-cta-apply {
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.mobile-cta-call {
    background: rgb(15 23 42);
    /* slate-900 */
    color: white;
}

.mobile-cta-apply {
    background: rgb(5 150 105);
    /* emerald-600 */
    color: white;
}

/* Give page breathing room behind fixed bottom bar */
@media (max-width: 640px) {
    body {
        padding-bottom: 72px;
    }
}