.cards-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.account-card {
    position: relative;
    flex: 1;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.account-card .card-check {
    display: none;
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--ynmo-green);
    color: #fff;
    font-size: 11px;
    align-items: center;
    justify-content: center;
}

.account-card.selected .card-check {
    display: flex;
}

.account-card:hover {
    border-color: var(--ynmo-green);
    box-shadow: 0 4px 15px rgba(21, 179, 137, 0.1);
}

.account-card.selected {
    border: 2px solid var(--ynmo-green);
    background-color: rgba(21, 179, 137, 0.03);
}

.card-icon {
    font-size: 32px;
    color: #64748b;
    margin-bottom: 15px;
}

.account-card.selected .card-icon {
    color: var(--ynmo-green);
}

.card-text {
    font-size: 15px;
    font-weight: 700;
    color: #475569;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 20px;
    height: 6px;
    border-radius: 5px;
    background-color: var(--border-color);
}

.dot.active {
    background-color: var(--ynmo-green);
}

.primary-btn {
    padding: 12px 50px;
    background-color: var(--ynmo-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.primary-btn:hover:not(:disabled) {
    background-color: #129c76;
}

.primary-btn:disabled {
    background-color: #a3e0cd;
    cursor: not-allowed;
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--ynmo-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}