.card-soft {
    border-radius: 1.5rem;
    border: 1px solid #eef0f2;
    background: #fff;
}

.card-shadow {
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .08);
}

.icon-soft {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    flex-shrink: 0;
}

.input-soft {
    border-radius: 14px;
    padding: .85rem 1rem;
    border: 1px solid #e9ecef;
}

.input-soft:focus {
    border-color: rgba(0, 72, 70, .35);
    box-shadow: 0 0 0 .25rem rgba(0, 72, 70, .10);
    outline: 0;
}

.btn-xl {
    border-radius: 14px;
    padding: .95rem 1.25rem;
    font-weight: 700;
}

.select-soft {
    border-radius: 14px;
    padding: .85rem 1rem;
    border: 1px solid #e9ecef;
    background: #fff;
}

.select-soft:focus {
    border-color: rgba(0, 72, 70, .35);
    box-shadow: 0 0 0 .25rem rgba(0, 72, 70, .10);
    outline: 0;
}

.textarea-soft {
    border-radius: 14px;
    padding: .85rem 1rem;
    border: 1px solid #e9ecef;
    min-height: 120px;
}

.textarea-soft:focus {
    border-color: rgba(0, 72, 70, .35);
    box-shadow: 0 0 0 .25rem rgba(0, 72, 70, .10);
    outline: 0;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
